diff --git a/quickfixj-codegenerator/src/main/java/org/quickfixj/codegenerator/MessageCodeGenerator.java b/quickfixj-codegenerator/src/main/java/org/quickfixj/codegenerator/MessageCodeGenerator.java
index 615e63966..4603ef3d1 100644
--- a/quickfixj-codegenerator/src/main/java/org/quickfixj/codegenerator/MessageCodeGenerator.java
+++ b/quickfixj-codegenerator/src/main/java/org/quickfixj/codegenerator/MessageCodeGenerator.java
@@ -81,7 +81,7 @@ protected void logInfo(String msg) {
}
protected void logDebug(String msg) {
- System.out.println(msg);
+ // no-op by default; override (e.g. MavenMessageCodeGenerator) to enable debug output
}
protected void logError(String msg, Throwable e) {
diff --git a/quickfixj-codegenerator/src/test/java/org/quickfixj/codegenerator/GoldenFileTest.java b/quickfixj-codegenerator/src/test/java/org/quickfixj/codegenerator/GoldenFileTest.java
new file mode 100644
index 000000000..6eac0999a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/java/org/quickfixj/codegenerator/GoldenFileTest.java
@@ -0,0 +1,179 @@
+package org.quickfixj.codegenerator;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
+
+import java.io.File;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.TemporaryFolder;
+
+/**
+ * Golden-file regression test for the code generator.
+ *
+ *
The test runs {@link MessageCodeGenerator} against the real FIX42 and FIX44 dictionaries
+ * and compares every generated {@code .java} file byte-for-byte against the committed golden
+ * files stored in {@code src/test/resources/golden/fix42} and
+ * {@code src/test/resources/golden/fix44}.
+ *
+ *
FIX42 is used because it contains repeating groups (38 of them), while still being
+ * smaller than FIX44. FIX44 is used because it contains 233 groups, including nested ones
+ * (relevant to issue #1084).
+ *
+ *
If the generator output must intentionally change, regenerate the golden files by running
+ * the {@code GenerateGoldenFiles} utility in the {@code src/test/java} tree and committing the
+ * updated golden files together with the generator changes.
+ */
+public class GoldenFileTest {
+
+ @Rule
+ public TemporaryFolder tempFolder = new TemporaryFolder();
+
+ private File schemaDirectory = new File("./src/main/resources/org/quickfixj/codegenerator");
+ private File goldenBase = new File("./src/test/resources/golden");
+
+ private File fix42DictFile = new File(
+ "../quickfixj-messages/quickfixj-messages-fix42/src/main/resources/FIX42.xml");
+ private File fix44DictFile = new File(
+ "../quickfixj-messages/quickfixj-messages-fix44/src/main/resources/FIX44.xml");
+
+ private MessageCodeGenerator generator;
+
+ @Before
+ public void setup() {
+ generator = new MessageCodeGenerator();
+ }
+
+ // -------------------------------------------------------------------------
+ // FIX42 – has fields, messages, and repeating groups (no components)
+ // -------------------------------------------------------------------------
+
+ @Test
+ public void testFix42GenerationMatchesGolden() throws Exception {
+ File outputDir = tempFolder.newFolder("fix42");
+ generateCode(fix42DictFile, "FIX42", "quickfix.fix42", outputDir);
+ assertMatchesGolden(new File(goldenBase, "fix42"), outputDir, "FIX42");
+ }
+
+ // -------------------------------------------------------------------------
+ // FIX44 – has fields, messages, components, and 233 groups (incl. nested)
+ // -------------------------------------------------------------------------
+
+ @Test
+ public void testFix44GenerationMatchesGolden() throws Exception {
+ File outputDir = tempFolder.newFolder("fix44");
+ generateCode(fix44DictFile, "FIX44", "quickfix.fix44", outputDir);
+ assertMatchesGolden(new File(goldenBase, "fix44"), outputDir, "FIX44");
+ }
+
+ // -------------------------------------------------------------------------
+ // Helpers
+ // -------------------------------------------------------------------------
+
+ private void generateCode(File dictFile, String name, String messagePackage, File outputDir)
+ throws Exception {
+ MessageCodeGenerator.Task task = new MessageCodeGenerator.Task();
+ task.setName(name);
+ task.setSpecification(dictFile);
+ task.setTransformDirectory(schemaDirectory);
+ task.setMessagePackage(messagePackage);
+ task.setOutputBaseDirectory(outputDir);
+ task.setFieldPackage("quickfix.field");
+ task.setOverwrite(true);
+ task.setOrderedFields(true);
+ task.setDecimalGenerated(true);
+ generator.generate(task);
+ }
+
+ /**
+ * Recursively walks the golden directory and verifies that each {@code .java} file has an
+ * identical counterpart in the generated output directory. Also checks that no extra files
+ * were generated that are absent from the golden directory.
+ */
+ private void assertMatchesGolden(File goldenDir, File generatedDir, String label)
+ throws IOException {
+ List errors = new ArrayList<>();
+
+ // Collect relative paths of all .java files in the golden directory
+ List goldenRelPaths = collectJavaPaths(goldenDir.toPath());
+
+ // Collect relative paths of all .java files in the generated output directory
+ List generatedRelPaths = collectJavaPaths(generatedDir.toPath());
+
+ // Files present in golden but missing from generated output
+ List missingFromGenerated = new ArrayList<>(goldenRelPaths);
+ missingFromGenerated.removeAll(generatedRelPaths);
+ for (String missing : missingFromGenerated) {
+ errors.add("[" + label + "] Missing generated file: " + missing);
+ }
+
+ // Extra files in generated output that are not in golden
+ List extraInGenerated = new ArrayList<>(generatedRelPaths);
+ extraInGenerated.removeAll(goldenRelPaths);
+ for (String extra : extraInGenerated) {
+ errors.add("[" + label + "] Unexpected generated file (not in golden): " + extra);
+ }
+
+ // Compare content of files present in both
+ for (String relPath : goldenRelPaths) {
+ if (!generatedRelPaths.contains(relPath)) {
+ continue; // already reported as missing above
+ }
+ File goldenFile = new File(goldenDir, relPath);
+ File generatedFile = new File(generatedDir, relPath);
+ compareFileContent(goldenFile, generatedFile, relPath, label, errors);
+ }
+
+ if (!errors.isEmpty()) {
+ fail(errors.size() + " golden file assertion(s) failed:\n"
+ + String.join("\n", errors));
+ }
+ }
+
+ private List collectJavaPaths(Path root) throws IOException {
+ if (!root.toFile().exists()) {
+ return new ArrayList<>();
+ }
+ try (Stream stream = Files.walk(root)) {
+ return stream
+ .filter(p -> p.toString().endsWith(".java"))
+ .map(p -> root.relativize(p).toString())
+ .sorted()
+ .collect(Collectors.toList());
+ }
+ }
+
+ private void compareFileContent(File goldenFile, File generatedFile, String relPath,
+ String label, List errors) throws IOException {
+ List goldenLines = Files.readAllLines(goldenFile.toPath());
+ List generatedLines = Files.readAllLines(generatedFile.toPath());
+
+ int maxLines = Math.max(goldenLines.size(), generatedLines.size());
+ for (int i = 0; i < maxLines; i++) {
+ String goldenLine = i < goldenLines.size() ? goldenLines.get(i) : "";
+ String generatedLine = i < generatedLines.size() ? generatedLines.get(i) : "";
+ if (!goldenLine.equals(generatedLine)) {
+ errors.add(String.format(
+ "[%s] %s line %d differs:%n golden: %s%n generated: %s",
+ label, relPath, i + 1, goldenLine, generatedLine));
+ // Report only the first differing line per file to keep output manageable
+ break;
+ }
+ }
+ if (goldenLines.size() != generatedLines.size() && errors.isEmpty()) {
+ // Line counts differ but all shared lines matched – report the length mismatch
+ errors.add(String.format(
+ "[%s] %s line count differs: golden=%d, generated=%d",
+ label, relPath, goldenLines.size(), generatedLines.size()));
+ }
+ }
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/README.md b/quickfixj-codegenerator/src/test/resources/golden/README.md
new file mode 100644
index 000000000..506f97827
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/README.md
@@ -0,0 +1,76 @@
+# Golden Files for Code Generator Regression Tests
+
+This directory contains the reference ("golden") output of `MessageCodeGenerator`
+for **FIX42** and **FIX44**. They are used by `GoldenFileTest` to catch
+unintended changes to generated code.
+
+## Directory layout
+
+```
+golden/
+ fix42/ – output generated from quickfixj-messages-fix42/src/main/resources/FIX42.xml
+ fix44/ – output generated from quickfixj-messages-fix44/src/main/resources/FIX44.xml
+```
+
+## What the test does
+
+`GoldenFileTest` runs `MessageCodeGenerator` against both dictionaries into a
+temporary folder, then walks every `.java` file and asserts line-by-line equality
+with the corresponding file here. Missing or extra files also fail the test.
+
+## When the generator output changes intentionally
+
+1. Make your generator changes.
+2. Rebuild the module to pick up the new code:
+ ```bash
+ mvn package -pl quickfixj-codegenerator -DskipTests
+ ```
+3. Regenerate the golden files by running the generator against both dictionaries
+ from the `quickfixj-codegenerator` directory:
+ ```bash
+ # FIX42
+ java -cp "target/quickfixj-codegenerator-*-SNAPSHOT.jar:$(mvn -q dependency:build-classpath -DincludeScope=compile -Dmdep.outputFile=/dev/stdout)" \
+ org.quickfixj.codegenerator.MessageCodeGenerator \
+ --spec ../quickfixj-messages/quickfixj-messages-fix42/src/main/resources/FIX42.xml \
+ --transform src/main/resources/org/quickfixj/codegenerator \
+ --out src/test/resources/golden/fix42 \
+ --messagePackage quickfix.fix42 --fieldPackage quickfix.field \
+ --orderedFields --decimal
+ ```
+ The easiest way is to use the existing `GoldenFileTest` parameters as a guide
+ and write a small standalone `main` — or simply copy the generated output from
+ the temporary folder that `GoldenFileTest` creates (set a breakpoint, or change
+ `tempFolder` to a fixed path temporarily).
+
+ Alternatively, run the following Maven snippet from the repo root, which uses
+ the same settings as the test:
+ ```bash
+ mvn test -pl quickfixj-codegenerator -Dtest=GenerateGoldenFilesManual
+ ```
+ *(Create a one-off test class that calls the generator and copies output to
+ `src/test/resources/golden/` if you prefer a scripted approach.)*
+
+4. Verify only the expected files changed:
+ ```bash
+ git diff --stat quickfixj-codegenerator/src/test/resources/golden/
+ ```
+5. Run the full test suite to confirm the updated golden files now match:
+ ```bash
+ mvn test -pl quickfixj-codegenerator
+ ```
+6. Commit the updated golden files **together with your generator changes** in the
+ same commit (or PR) so reviewers can see the diff side-by-side.
+
+## Why FIX42 and FIX44?
+
+| Coverage area | FIX42 | FIX44 |
+|------------------------|-------|-------|
+| Fields | ✓ | ✓ |
+| Messages | ✓ | ✓ |
+| Components | | ✓ |
+| Repeating groups | ✓ (38)| ✓ (233, incl. nested) |
+| Message cracker/factory| ✓ | ✓ |
+
+FIX42 is small enough to keep test times short while still exercising the
+group-generation path. FIX44's 233 groups (including nested groups relevant to
+issue #1084) provide thorough coverage without needing all FIX versions.
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Account.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Account.java
new file mode 100644
index 000000000..14589457e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Account.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Account extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 1;
+
+ public Account() {
+ super(1);
+ }
+
+ public Account(String data) {
+ super(1, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AccruedInterestAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AccruedInterestAmt.java
new file mode 100644
index 000000000..8f2472535
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AccruedInterestAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AccruedInterestAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 159;
+
+ public AccruedInterestAmt() {
+ super(159);
+ }
+
+ public AccruedInterestAmt(java.math.BigDecimal data) {
+ super(159, data);
+ }
+
+ public AccruedInterestAmt(double data) {
+ super(159, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AccruedInterestRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AccruedInterestRate.java
new file mode 100644
index 000000000..c9ffda7c3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AccruedInterestRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class AccruedInterestRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 158;
+
+ public AccruedInterestRate() {
+ super(158);
+ }
+
+ public AccruedInterestRate(double data) {
+ super(158, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Adjustment.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Adjustment.java
new file mode 100644
index 000000000..8f485b017
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Adjustment.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Adjustment extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 334;
+ public static final int CANCEL = 1;
+ public static final int ERROR = 2;
+ public static final int CORRECTION = 3;
+
+ public Adjustment() {
+ super(334);
+ }
+
+ public Adjustment(int data) {
+ super(334, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvId.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvId.java
new file mode 100644
index 000000000..727f390c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvId.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AdvId extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 2;
+
+ public AdvId() {
+ super(2);
+ }
+
+ public AdvId(String data) {
+ super(2, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvRefID.java
new file mode 100644
index 000000000..47c28c292
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AdvRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 3;
+
+ public AdvRefID() {
+ super(3);
+ }
+
+ public AdvRefID(String data) {
+ super(3, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvSide.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvSide.java
new file mode 100644
index 000000000..14f271ccd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvSide.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class AdvSide extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 4;
+ public static final char BUY = 'B';
+ public static final char SELL = 'S';
+ public static final char CROSS = 'X';
+ public static final char TRADE = 'T';
+
+ public AdvSide() {
+ super(4);
+ }
+
+ public AdvSide(char data) {
+ super(4, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvTransType.java
new file mode 100644
index 000000000..e30a5660d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AdvTransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AdvTransType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 5;
+ public static final String NEW = "N";
+ public static final String CANCEL = "C";
+ public static final String REPLACE = "R";
+
+ public AdvTransType() {
+ super(5);
+ }
+
+ public AdvTransType(String data) {
+ super(5, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AggregatedBook.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AggregatedBook.java
new file mode 100644
index 000000000..1ebe51665
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AggregatedBook.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class AggregatedBook extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 266;
+ public static final boolean ONE_BOOK_ENTRY_PER_SIDE_PER_PRICE = true;
+ public static final boolean MULTIPLE_ENTRIES_PER_SIDE_PER_PRICE_ALLOWED = false;
+
+ public AggregatedBook() {
+ super(266);
+ }
+
+ public AggregatedBook(boolean data) {
+ super(266, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocAccount.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocAccount.java
new file mode 100644
index 000000000..c7d3c5b26
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocAccount.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocAccount extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 79;
+
+ public AllocAccount() {
+ super(79);
+ }
+
+ public AllocAccount(String data) {
+ super(79, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocAvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocAvgPx.java
new file mode 100644
index 000000000..760bc1bf4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocAvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocAvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 153;
+
+ public AllocAvgPx() {
+ super(153);
+ }
+
+ public AllocAvgPx(java.math.BigDecimal data) {
+ super(153, data);
+ }
+
+ public AllocAvgPx(double data) {
+ super(153, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocHandlInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocHandlInst.java
new file mode 100644
index 000000000..2885f4ccd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocHandlInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocHandlInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 209;
+ public static final int MATCH = 1;
+ public static final int FORWARD = 2;
+ public static final int FORWARD_AND_MATCH = 3;
+
+ public AllocHandlInst() {
+ super(209);
+ }
+
+ public AllocHandlInst(int data) {
+ super(209, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocID.java
new file mode 100644
index 000000000..65586b253
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 70;
+
+ public AllocID() {
+ super(70);
+ }
+
+ public AllocID(String data) {
+ super(70, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocLinkID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocLinkID.java
new file mode 100644
index 000000000..13ef4d37d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocLinkID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocLinkID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 196;
+
+ public AllocLinkID() {
+ super(196);
+ }
+
+ public AllocLinkID(String data) {
+ super(196, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocLinkType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocLinkType.java
new file mode 100644
index 000000000..aeea2e521
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocLinkType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocLinkType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 197;
+ public static final int FX_NETTING = 0;
+ public static final int FX_SWAP = 1;
+
+ public AllocLinkType() {
+ super(197);
+ }
+
+ public AllocLinkType(int data) {
+ super(197, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocNetMoney.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocNetMoney.java
new file mode 100644
index 000000000..5c80ee6c8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocNetMoney.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocNetMoney extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 154;
+
+ public AllocNetMoney() {
+ super(154);
+ }
+
+ public AllocNetMoney(java.math.BigDecimal data) {
+ super(154, data);
+ }
+
+ public AllocNetMoney(double data) {
+ super(154, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocPrice.java
new file mode 100644
index 000000000..a3ec4bc94
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 366;
+
+ public AllocPrice() {
+ super(366);
+ }
+
+ public AllocPrice(java.math.BigDecimal data) {
+ super(366, data);
+ }
+
+ public AllocPrice(double data) {
+ super(366, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocRejCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocRejCode.java
new file mode 100644
index 000000000..36c80673c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocRejCode.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocRejCode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 88;
+ public static final int UNKNOWN_ACCOUNT = 0;
+ public static final int INCORRECT_QUANTITY = 1;
+ public static final int INCORRECT_AVERAGE_PRICE = 2;
+ public static final int UNKNOWN_EXECUTING_BROKER_MNEMONIC = 3;
+ public static final int COMMISSION_DIFFERENCE = 4;
+ public static final int UNKNOWN_ORDERID = 5;
+ public static final int UNKNOWN_LISTID = 6;
+ public static final int OTHER = 7;
+
+ public AllocRejCode() {
+ super(88);
+ }
+
+ public AllocRejCode(int data) {
+ super(88, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocShares.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocShares.java
new file mode 100644
index 000000000..94a8b7e03
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocShares.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocShares extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 80;
+
+ public AllocShares() {
+ super(80);
+ }
+
+ public AllocShares(java.math.BigDecimal data) {
+ super(80, data);
+ }
+
+ public AllocShares(double data) {
+ super(80, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocStatus.java
new file mode 100644
index 000000000..5bd904925
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocStatus.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 87;
+ public static final int ACCEPTED = 0;
+ public static final int REJECTED = 1;
+ public static final int PARTIAL_ACCEPT = 2;
+ public static final int RECEIVED = 3;
+
+ public AllocStatus() {
+ super(87);
+ }
+
+ public AllocStatus(int data) {
+ super(87, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocText.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocText.java
new file mode 100644
index 000000000..9ff9880ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 161;
+
+ public AllocText() {
+ super(161);
+ }
+
+ public AllocText(String data) {
+ super(161, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocTransType.java
new file mode 100644
index 000000000..7e7645d08
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AllocTransType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class AllocTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 71;
+ public static final char NEW = '0';
+ public static final char REPLACE = '1';
+ public static final char CANCEL = '2';
+ public static final char PRELIMINARY = '3';
+ public static final char CALCULATED = '4';
+ public static final char CALCULATED_WITHOUT_PRELIMINARY = '5';
+
+ public AllocTransType() {
+ super(71);
+ }
+
+ public AllocTransType(char data) {
+ super(71, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AvgPrxPrecision.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AvgPrxPrecision.java
new file mode 100644
index 000000000..f502867bb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AvgPrxPrecision.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AvgPrxPrecision extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 74;
+
+ public AvgPrxPrecision() {
+ super(74);
+ }
+
+ public AvgPrxPrecision(int data) {
+ super(74, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AvgPx.java
new file mode 100644
index 000000000..feb9f08b6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/AvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 6;
+
+ public AvgPx() {
+ super(6);
+ }
+
+ public AvgPx(java.math.BigDecimal data) {
+ super(6, data);
+ }
+
+ public AvgPx(double data) {
+ super(6, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BasisPxType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BasisPxType.java
new file mode 100644
index 000000000..5305fa492
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BasisPxType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class BasisPxType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 419;
+
+ public BasisPxType() {
+ super(419);
+ }
+
+ public BasisPxType(char data) {
+ super(419, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BeginSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BeginSeqNo.java
new file mode 100644
index 000000000..6fb02afde
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BeginSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BeginSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 7;
+
+ public BeginSeqNo() {
+ super(7);
+ }
+
+ public BeginSeqNo(int data) {
+ super(7, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BeginString.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BeginString.java
new file mode 100644
index 000000000..d87b2b8c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BeginString.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BeginString extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 8;
+
+ public BeginString() {
+ super(8);
+ }
+
+ public BeginString(String data) {
+ super(8, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Benchmark.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Benchmark.java
new file mode 100644
index 000000000..a110db3ac
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Benchmark.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Benchmark extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 219;
+ public static final char CURVE = '1';
+ public static final char FIVEYR = '2';
+ public static final char OLD5 = '3';
+ public static final char TENYR = '4';
+ public static final char OLD10 = '5';
+ public static final char THIRTYYR = '6';
+ public static final char OLD30 = '7';
+ public static final char THREEMOLIBOR = '8';
+ public static final char SIXMOLIBOR = '9';
+
+ public Benchmark() {
+ super(219);
+ }
+
+ public Benchmark(char data) {
+ super(219, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidDescriptor.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidDescriptor.java
new file mode 100644
index 000000000..85bc72472
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidDescriptor.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BidDescriptor extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 400;
+
+ public BidDescriptor() {
+ super(400);
+ }
+
+ public BidDescriptor(String data) {
+ super(400, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidDescriptorType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidDescriptorType.java
new file mode 100644
index 000000000..202f66033
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidDescriptorType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BidDescriptorType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 399;
+
+ public BidDescriptorType() {
+ super(399);
+ }
+
+ public BidDescriptorType(int data) {
+ super(399, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidForwardPoints.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidForwardPoints.java
new file mode 100644
index 000000000..c96f4f717
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidForwardPoints.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidForwardPoints extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 189;
+
+ public BidForwardPoints() {
+ super(189);
+ }
+
+ public BidForwardPoints(java.math.BigDecimal data) {
+ super(189, data);
+ }
+
+ public BidForwardPoints(double data) {
+ super(189, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidID.java
new file mode 100644
index 000000000..1259f03dd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BidID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 390;
+
+ public BidID() {
+ super(390);
+ }
+
+ public BidID(String data) {
+ super(390, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidPx.java
new file mode 100644
index 000000000..e41cb8ff4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 132;
+
+ public BidPx() {
+ super(132);
+ }
+
+ public BidPx(java.math.BigDecimal data) {
+ super(132, data);
+ }
+
+ public BidPx(double data) {
+ super(132, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidRequestTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidRequestTransType.java
new file mode 100644
index 000000000..68ce045e7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidRequestTransType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class BidRequestTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 374;
+ public static final char NEW = 'N';
+ public static final char CANCEL = 'C';
+
+ public BidRequestTransType() {
+ super(374);
+ }
+
+ public BidRequestTransType(char data) {
+ super(374, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidSize.java
new file mode 100644
index 000000000..21e49120b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 134;
+
+ public BidSize() {
+ super(134);
+ }
+
+ public BidSize(java.math.BigDecimal data) {
+ super(134, data);
+ }
+
+ public BidSize(double data) {
+ super(134, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidSpotRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidSpotRate.java
new file mode 100644
index 000000000..57b56730f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidSpotRate.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidSpotRate extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 188;
+
+ public BidSpotRate() {
+ super(188);
+ }
+
+ public BidSpotRate(java.math.BigDecimal data) {
+ super(188, data);
+ }
+
+ public BidSpotRate(double data) {
+ super(188, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidType.java
new file mode 100644
index 000000000..62362e9b4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BidType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BidType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 394;
+
+ public BidType() {
+ super(394);
+ }
+
+ public BidType(int data) {
+ super(394, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BodyLength.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BodyLength.java
new file mode 100644
index 000000000..c5b0a8d5c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BodyLength.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BodyLength extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 9;
+
+ public BodyLength() {
+ super(9);
+ }
+
+ public BodyLength(int data) {
+ super(9, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BrokerOfCredit.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BrokerOfCredit.java
new file mode 100644
index 000000000..fa17a5739
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BrokerOfCredit.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BrokerOfCredit extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 92;
+
+ public BrokerOfCredit() {
+ super(92);
+ }
+
+ public BrokerOfCredit(String data) {
+ super(92, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BusinessRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BusinessRejectReason.java
new file mode 100644
index 000000000..2ceb83350
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BusinessRejectReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BusinessRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 380;
+ public static final int OTHER = 0;
+ public static final int UNKOWN_ID = 1;
+ public static final int UNKNOWN_SECURITY = 2;
+ public static final int UNSUPPORTED_MESSAGE_TYPE = 3;
+ public static final int APPLICATION_NOT_AVAILABLE = 4;
+ public static final int CONDITIONALLY_REQUIRED_FIELD_MISSING = 5;
+
+ public BusinessRejectReason() {
+ super(380);
+ }
+
+ public BusinessRejectReason(int data) {
+ super(380, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BusinessRejectRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BusinessRejectRefID.java
new file mode 100644
index 000000000..8c671c04f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BusinessRejectRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BusinessRejectRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 379;
+
+ public BusinessRejectRefID() {
+ super(379);
+ }
+
+ public BusinessRejectRefID(String data) {
+ super(379, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BuyVolume.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BuyVolume.java
new file mode 100644
index 000000000..a1f138267
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/BuyVolume.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BuyVolume extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 330;
+
+ public BuyVolume() {
+ super(330);
+ }
+
+ public BuyVolume(java.math.BigDecimal data) {
+ super(330, data);
+ }
+
+ public BuyVolume(double data) {
+ super(330, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashOrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashOrderQty.java
new file mode 100644
index 000000000..4d89cc7a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashOrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CashOrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 152;
+
+ public CashOrderQty() {
+ super(152);
+ }
+
+ public CashOrderQty(java.math.BigDecimal data) {
+ super(152, data);
+ }
+
+ public CashOrderQty(double data) {
+ super(152, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentAcctName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentAcctName.java
new file mode 100644
index 000000000..3611d6271
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentAcctName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashSettlAgentAcctName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 185;
+
+ public CashSettlAgentAcctName() {
+ super(185);
+ }
+
+ public CashSettlAgentAcctName(String data) {
+ super(185, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentAcctNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentAcctNum.java
new file mode 100644
index 000000000..aef436c02
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentAcctNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashSettlAgentAcctNum extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 184;
+
+ public CashSettlAgentAcctNum() {
+ super(184);
+ }
+
+ public CashSettlAgentAcctNum(String data) {
+ super(184, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentCode.java
new file mode 100644
index 000000000..de943908f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashSettlAgentCode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 183;
+
+ public CashSettlAgentCode() {
+ super(183);
+ }
+
+ public CashSettlAgentCode(String data) {
+ super(183, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentContactName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentContactName.java
new file mode 100644
index 000000000..24efb638a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentContactName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashSettlAgentContactName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 186;
+
+ public CashSettlAgentContactName() {
+ super(186);
+ }
+
+ public CashSettlAgentContactName(String data) {
+ super(186, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentContactPhone.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentContactPhone.java
new file mode 100644
index 000000000..1962dcf86
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentContactPhone.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashSettlAgentContactPhone extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 187;
+
+ public CashSettlAgentContactPhone() {
+ super(187);
+ }
+
+ public CashSettlAgentContactPhone(String data) {
+ super(187, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentName.java
new file mode 100644
index 000000000..0f5286073
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CashSettlAgentName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashSettlAgentName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 182;
+
+ public CashSettlAgentName() {
+ super(182);
+ }
+
+ public CashSettlAgentName(String data) {
+ super(182, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CheckSum.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CheckSum.java
new file mode 100644
index 000000000..434f009d6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CheckSum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CheckSum extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 10;
+
+ public CheckSum() {
+ super(10);
+ }
+
+ public CheckSum(String data) {
+ super(10, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClOrdID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClOrdID.java
new file mode 100644
index 000000000..7a20ef089
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClOrdID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClOrdID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 11;
+
+ public ClOrdID() {
+ super(11);
+ }
+
+ public ClOrdID(String data) {
+ super(11, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClearingAccount.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClearingAccount.java
new file mode 100644
index 000000000..b1cf149a8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClearingAccount.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClearingAccount extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 440;
+
+ public ClearingAccount() {
+ super(440);
+ }
+
+ public ClearingAccount(String data) {
+ super(440, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClearingFirm.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClearingFirm.java
new file mode 100644
index 000000000..69f1349fe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClearingFirm.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClearingFirm extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 439;
+
+ public ClearingFirm() {
+ super(439);
+ }
+
+ public ClearingFirm(String data) {
+ super(439, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClientBidID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClientBidID.java
new file mode 100644
index 000000000..c84c0d547
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClientBidID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClientBidID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 391;
+
+ public ClientBidID() {
+ super(391);
+ }
+
+ public ClientBidID(String data) {
+ super(391, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClientID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClientID.java
new file mode 100644
index 000000000..1291a5c59
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ClientID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClientID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 109;
+
+ public ClientID() {
+ super(109);
+ }
+
+ public ClientID(String data) {
+ super(109, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CommType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CommType.java
new file mode 100644
index 000000000..da0ed9fc5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CommType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CommType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 13;
+ public static final char PER_SHARE = '1';
+ public static final char PERCENTAGE = '2';
+ public static final char ABSOLUTE = '3';
+
+ public CommType() {
+ super(13);
+ }
+
+ public CommType(char data) {
+ super(13, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Commission.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Commission.java
new file mode 100644
index 000000000..fddfa441f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Commission.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Commission extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 12;
+
+ public Commission() {
+ super(12);
+ }
+
+ public Commission(java.math.BigDecimal data) {
+ super(12, data);
+ }
+
+ public Commission(double data) {
+ super(12, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ComplianceID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ComplianceID.java
new file mode 100644
index 000000000..ff579377b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ComplianceID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ComplianceID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 376;
+
+ public ComplianceID() {
+ super(376);
+ }
+
+ public ComplianceID(String data) {
+ super(376, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraBroker.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraBroker.java
new file mode 100644
index 000000000..8adc9d916
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraBroker.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContraBroker extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 375;
+
+ public ContraBroker() {
+ super(375);
+ }
+
+ public ContraBroker(String data) {
+ super(375, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTradeQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTradeQty.java
new file mode 100644
index 000000000..109043974
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTradeQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ContraTradeQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 437;
+
+ public ContraTradeQty() {
+ super(437);
+ }
+
+ public ContraTradeQty(java.math.BigDecimal data) {
+ super(437, data);
+ }
+
+ public ContraTradeQty(double data) {
+ super(437, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTradeTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTradeTime.java
new file mode 100644
index 000000000..d326a76c0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTradeTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ContraTradeTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 438;
+
+ public ContraTradeTime() {
+ super(438);
+ }
+
+ public ContraTradeTime(LocalDateTime data) {
+ super(438, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTrader.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTrader.java
new file mode 100644
index 000000000..67cc95032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContraTrader.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContraTrader extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 337;
+
+ public ContraTrader() {
+ super(337);
+ }
+
+ public ContraTrader(String data) {
+ super(337, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContractMultiplier.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContractMultiplier.java
new file mode 100644
index 000000000..855090db8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ContractMultiplier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class ContractMultiplier extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 231;
+
+ public ContractMultiplier() {
+ super(231);
+ }
+
+ public ContractMultiplier(double data) {
+ super(231, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CorporateAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CorporateAction.java
new file mode 100644
index 000000000..98b1a2313
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CorporateAction.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CorporateAction extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 292;
+ public static final char EXDIVIDEND = 'A';
+ public static final char EXDISTRIBUTION = 'B';
+ public static final char EXRIGHTS = 'C';
+ public static final char NEW = 'D';
+ public static final char EXINTEREST = 'E';
+
+ public CorporateAction() {
+ super(292);
+ }
+
+ public CorporateAction(char data) {
+ super(292, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Country.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Country.java
new file mode 100644
index 000000000..3ae3c1de8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Country.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Country extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 421;
+
+ public Country() {
+ super(421);
+ }
+
+ public Country(String data) {
+ super(421, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CouponRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CouponRate.java
new file mode 100644
index 000000000..6b1268816
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CouponRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class CouponRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 223;
+
+ public CouponRate() {
+ super(223);
+ }
+
+ public CouponRate(double data) {
+ super(223, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CoveredOrUncovered.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CoveredOrUncovered.java
new file mode 100644
index 000000000..50dcec248
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CoveredOrUncovered.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CoveredOrUncovered extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 203;
+ public static final int COVERED = 0;
+ public static final int UNCOVERED = 1;
+
+ public CoveredOrUncovered() {
+ super(203);
+ }
+
+ public CoveredOrUncovered(int data) {
+ super(203, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CrossPercent.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CrossPercent.java
new file mode 100644
index 000000000..771ef245c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CrossPercent.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class CrossPercent extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 413;
+
+ public CrossPercent() {
+ super(413);
+ }
+
+ public CrossPercent(double data) {
+ super(413, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CumQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CumQty.java
new file mode 100644
index 000000000..f98927e2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CumQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CumQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 14;
+
+ public CumQty() {
+ super(14);
+ }
+
+ public CumQty(java.math.BigDecimal data) {
+ super(14, data);
+ }
+
+ public CumQty(double data) {
+ super(14, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Currency.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Currency.java
new file mode 100644
index 000000000..8379f4f65
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Currency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Currency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 15;
+
+ public Currency() {
+ super(15);
+ }
+
+ public Currency(String data) {
+ super(15, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CustomerOrFirm.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CustomerOrFirm.java
new file mode 100644
index 000000000..4fa53a1a3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CustomerOrFirm.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CustomerOrFirm extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 204;
+ public static final int CUSTOMER = 0;
+ public static final int FIRM = 1;
+
+ public CustomerOrFirm() {
+ super(204);
+ }
+
+ public CustomerOrFirm(int data) {
+ super(204, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlQty.java
new file mode 100644
index 000000000..d3cd9eab5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CxlQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 84;
+
+ public CxlQty() {
+ super(84);
+ }
+
+ public CxlQty(java.math.BigDecimal data) {
+ super(84, data);
+ }
+
+ public CxlQty(double data) {
+ super(84, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlRejReason.java
new file mode 100644
index 000000000..17ddf8c60
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlRejReason.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CxlRejReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 102;
+ public static final int TOO_LATE_TO_CANCEL = 0;
+ public static final int UNKNOWN_ORDER = 1;
+ public static final int BROKER_OPTION = 2;
+ public static final int ALREADY_PENDING = 3;
+
+ public CxlRejReason() {
+ super(102);
+ }
+
+ public CxlRejReason(int data) {
+ super(102, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlRejResponseTo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlRejResponseTo.java
new file mode 100644
index 000000000..1d35e0268
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/CxlRejResponseTo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CxlRejResponseTo extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 434;
+
+ public CxlRejResponseTo() {
+ super(434);
+ }
+
+ public CxlRejResponseTo(char data) {
+ super(434, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DKReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DKReason.java
new file mode 100644
index 000000000..84e14970f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DKReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DKReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 127;
+ public static final char UNKNOWN_SYMBOL = 'A';
+ public static final char WRONG_SIDE = 'B';
+ public static final char QUANTITY_EXCEEDS_ORDER = 'C';
+ public static final char NO_MATCHING_ORDER = 'D';
+ public static final char PRICE_EXCEEDS_LIMIT = 'E';
+ public static final char OTHER = 'Z';
+
+ public DKReason() {
+ super(127);
+ }
+
+ public DKReason(char data) {
+ super(127, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayAvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayAvgPx.java
new file mode 100644
index 000000000..2eb8476ee
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayAvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DayAvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 426;
+
+ public DayAvgPx() {
+ super(426);
+ }
+
+ public DayAvgPx(java.math.BigDecimal data) {
+ super(426, data);
+ }
+
+ public DayAvgPx(double data) {
+ super(426, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayCumQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayCumQty.java
new file mode 100644
index 000000000..d735eb60e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayCumQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DayCumQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 425;
+
+ public DayCumQty() {
+ super(425);
+ }
+
+ public DayCumQty(java.math.BigDecimal data) {
+ super(425, data);
+ }
+
+ public DayCumQty(double data) {
+ super(425, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayOrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayOrderQty.java
new file mode 100644
index 000000000..c38e27aa9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DayOrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DayOrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 424;
+
+ public DayOrderQty() {
+ super(424);
+ }
+
+ public DayOrderQty(java.math.BigDecimal data) {
+ super(424, data);
+ }
+
+ public DayOrderQty(double data) {
+ super(424, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DefBidSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DefBidSize.java
new file mode 100644
index 000000000..e65df4a7c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DefBidSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DefBidSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 293;
+
+ public DefBidSize() {
+ super(293);
+ }
+
+ public DefBidSize(java.math.BigDecimal data) {
+ super(293, data);
+ }
+
+ public DefBidSize(double data) {
+ super(293, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DefOfferSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DefOfferSize.java
new file mode 100644
index 000000000..52d7e0daf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DefOfferSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DefOfferSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 294;
+
+ public DefOfferSize() {
+ super(294);
+ }
+
+ public DefOfferSize(java.math.BigDecimal data) {
+ super(294, data);
+ }
+
+ public DefOfferSize(double data) {
+ super(294, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeleteReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeleteReason.java
new file mode 100644
index 000000000..3b44aed20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeleteReason.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DeleteReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 285;
+ public static final char CANCELATION_TRADE_BUST = '0';
+ public static final char ERROR = '1';
+
+ public DeleteReason() {
+ super(285);
+ }
+
+ public DeleteReason(char data) {
+ super(285, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToCompID.java
new file mode 100644
index 000000000..77c3bef64
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliverToCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 128;
+
+ public DeliverToCompID() {
+ super(128);
+ }
+
+ public DeliverToCompID(String data) {
+ super(128, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToLocationID.java
new file mode 100644
index 000000000..f3b564940
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliverToLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 145;
+
+ public DeliverToLocationID() {
+ super(145);
+ }
+
+ public DeliverToLocationID(String data) {
+ super(145, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToSubID.java
new file mode 100644
index 000000000..835976473
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeliverToSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliverToSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 129;
+
+ public DeliverToSubID() {
+ super(129);
+ }
+
+ public DeliverToSubID(String data) {
+ super(129, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeskID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeskID.java
new file mode 100644
index 000000000..3d45073d0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DeskID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeskID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 284;
+
+ public DeskID() {
+ super(284);
+ }
+
+ public DeskID(String data) {
+ super(284, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DiscretionInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DiscretionInst.java
new file mode 100644
index 000000000..75a0994e1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DiscretionInst.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DiscretionInst extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 388;
+ public static final char RELATED_TO_DISPLAYED_PRICE = '0';
+ public static final char RELATED_TO_MARKET_PRICE = '1';
+ public static final char RELATED_TO_PRIMARY_PRICE = '2';
+ public static final char RELATED_TO_LOCAL_PRIMARY_PRICE = '3';
+ public static final char RELATED_TO_MIDPOINT_PRICE = '4';
+ public static final char RELATED_TO_LAST_TRADE_PRICE = '5';
+
+ public DiscretionInst() {
+ super(388);
+ }
+
+ public DiscretionInst(char data) {
+ super(388, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DiscretionOffset.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DiscretionOffset.java
new file mode 100644
index 000000000..a78c8a7e4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DiscretionOffset.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DiscretionOffset extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 389;
+
+ public DiscretionOffset() {
+ super(389);
+ }
+
+ public DiscretionOffset(java.math.BigDecimal data) {
+ super(389, data);
+ }
+
+ public DiscretionOffset(double data) {
+ super(389, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DlvyInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DlvyInst.java
new file mode 100644
index 000000000..7f1e28e84
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DlvyInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DlvyInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 86;
+
+ public DlvyInst() {
+ super(86);
+ }
+
+ public DlvyInst(String data) {
+ super(86, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DueToRelated.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DueToRelated.java
new file mode 100644
index 000000000..2a4b72dd3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/DueToRelated.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class DueToRelated extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 329;
+ public static final boolean HALT_WAS_DUE_TO_RELATED_SECURITY_BEING_HALTED = true;
+ public static final boolean HALT_WAS_NOT_RELATED_TO_A_HALT_OF_THE_RELATED_SECURITY = false;
+
+ public DueToRelated() {
+ super(329);
+ }
+
+ public DueToRelated(boolean data) {
+ super(329, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EFPTrackingError.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EFPTrackingError.java
new file mode 100644
index 000000000..97dbfd497
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EFPTrackingError.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class EFPTrackingError extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 405;
+
+ public EFPTrackingError() {
+ super(405);
+ }
+
+ public EFPTrackingError(double data) {
+ super(405, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EffectiveTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EffectiveTime.java
new file mode 100644
index 000000000..99d00e071
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EffectiveTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class EffectiveTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 168;
+
+ public EffectiveTime() {
+ super(168);
+ }
+
+ public EffectiveTime(LocalDateTime data) {
+ super(168, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EmailThreadID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EmailThreadID.java
new file mode 100644
index 000000000..0442d980b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EmailThreadID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EmailThreadID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 164;
+
+ public EmailThreadID() {
+ super(164);
+ }
+
+ public EmailThreadID(String data) {
+ super(164, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EmailType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EmailType.java
new file mode 100644
index 000000000..bd3db3a44
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EmailType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class EmailType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 94;
+ public static final char NEW = '0';
+ public static final char REPLY = '1';
+ public static final char ADMIN_REPLY = '2';
+
+ public EmailType() {
+ super(94);
+ }
+
+ public EmailType(char data) {
+ super(94, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedAllocText.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedAllocText.java
new file mode 100644
index 000000000..e47731af3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedAllocText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedAllocText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 361;
+
+ public EncodedAllocText() {
+ super(361);
+ }
+
+ public EncodedAllocText(String data) {
+ super(361, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedAllocTextLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedAllocTextLen.java
new file mode 100644
index 000000000..eb79ecaa9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedAllocTextLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedAllocTextLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 360;
+
+ public EncodedAllocTextLen() {
+ super(360);
+ }
+
+ public EncodedAllocTextLen(int data) {
+ super(360, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedHeadline.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedHeadline.java
new file mode 100644
index 000000000..9ac3fef32
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedHeadline.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedHeadline extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 359;
+
+ public EncodedHeadline() {
+ super(359);
+ }
+
+ public EncodedHeadline(String data) {
+ super(359, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedHeadlineLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedHeadlineLen.java
new file mode 100644
index 000000000..ad672a35a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedHeadlineLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedHeadlineLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 358;
+
+ public EncodedHeadlineLen() {
+ super(358);
+ }
+
+ public EncodedHeadlineLen(int data) {
+ super(358, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedIssuer.java
new file mode 100644
index 000000000..5801b7a7e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 349;
+
+ public EncodedIssuer() {
+ super(349);
+ }
+
+ public EncodedIssuer(String data) {
+ super(349, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedIssuerLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedIssuerLen.java
new file mode 100644
index 000000000..36990157f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedIssuerLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedIssuerLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 348;
+
+ public EncodedIssuerLen() {
+ super(348);
+ }
+
+ public EncodedIssuerLen(int data) {
+ super(348, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListExecInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListExecInst.java
new file mode 100644
index 000000000..bd2fd695b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListExecInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedListExecInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 353;
+
+ public EncodedListExecInst() {
+ super(353);
+ }
+
+ public EncodedListExecInst(String data) {
+ super(353, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListExecInstLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListExecInstLen.java
new file mode 100644
index 000000000..f23846d5a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListExecInstLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedListExecInstLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 352;
+
+ public EncodedListExecInstLen() {
+ super(352);
+ }
+
+ public EncodedListExecInstLen(int data) {
+ super(352, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListStatusText.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListStatusText.java
new file mode 100644
index 000000000..ab7f5fde6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListStatusText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedListStatusText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 446;
+
+ public EncodedListStatusText() {
+ super(446);
+ }
+
+ public EncodedListStatusText(String data) {
+ super(446, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListStatusTextLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListStatusTextLen.java
new file mode 100644
index 000000000..ae1338da1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedListStatusTextLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedListStatusTextLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 445;
+
+ public EncodedListStatusTextLen() {
+ super(445);
+ }
+
+ public EncodedListStatusTextLen(int data) {
+ super(445, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSecurityDesc.java
new file mode 100644
index 000000000..828fc0648
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 351;
+
+ public EncodedSecurityDesc() {
+ super(351);
+ }
+
+ public EncodedSecurityDesc(String data) {
+ super(351, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSecurityDescLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSecurityDescLen.java
new file mode 100644
index 000000000..1ae7613d4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSecurityDescLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedSecurityDescLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 350;
+
+ public EncodedSecurityDescLen() {
+ super(350);
+ }
+
+ public EncodedSecurityDescLen(int data) {
+ super(350, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSubject.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSubject.java
new file mode 100644
index 000000000..93c86bffd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSubject.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedSubject extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 357;
+
+ public EncodedSubject() {
+ super(357);
+ }
+
+ public EncodedSubject(String data) {
+ super(357, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSubjectLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSubjectLen.java
new file mode 100644
index 000000000..9e371eecf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedSubjectLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedSubjectLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 356;
+
+ public EncodedSubjectLen() {
+ super(356);
+ }
+
+ public EncodedSubjectLen(int data) {
+ super(356, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedText.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedText.java
new file mode 100644
index 000000000..442e7f9c0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 355;
+
+ public EncodedText() {
+ super(355);
+ }
+
+ public EncodedText(String data) {
+ super(355, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedTextLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedTextLen.java
new file mode 100644
index 000000000..987a09475
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedTextLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedTextLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 354;
+
+ public EncodedTextLen() {
+ super(354);
+ }
+
+ public EncodedTextLen(int data) {
+ super(354, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingIssuer.java
new file mode 100644
index 000000000..763d70c93
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedUnderlyingIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 363;
+
+ public EncodedUnderlyingIssuer() {
+ super(363);
+ }
+
+ public EncodedUnderlyingIssuer(String data) {
+ super(363, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingIssuerLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingIssuerLen.java
new file mode 100644
index 000000000..15bc3b273
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingIssuerLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedUnderlyingIssuerLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 362;
+
+ public EncodedUnderlyingIssuerLen() {
+ super(362);
+ }
+
+ public EncodedUnderlyingIssuerLen(int data) {
+ super(362, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingSecurityDesc.java
new file mode 100644
index 000000000..27c1f2e49
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedUnderlyingSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 365;
+
+ public EncodedUnderlyingSecurityDesc() {
+ super(365);
+ }
+
+ public EncodedUnderlyingSecurityDesc(String data) {
+ super(365, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingSecurityDescLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingSecurityDescLen.java
new file mode 100644
index 000000000..da82ed039
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncodedUnderlyingSecurityDescLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedUnderlyingSecurityDescLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 364;
+
+ public EncodedUnderlyingSecurityDescLen() {
+ super(364);
+ }
+
+ public EncodedUnderlyingSecurityDescLen(int data) {
+ super(364, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncryptMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncryptMethod.java
new file mode 100644
index 000000000..d8f37801e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EncryptMethod.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncryptMethod extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 98;
+ public static final int NONE_OTHER = 0;
+ public static final int PKCS = 1;
+ public static final int DES = 2;
+ public static final int PKCSDES = 3;
+ public static final int PGPDES = 4;
+ public static final int PGPDESMD5 = 5;
+ public static final int PEMDESMD5 = 6;
+
+ public EncryptMethod() {
+ super(98);
+ }
+
+ public EncryptMethod(int data) {
+ super(98, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EndSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EndSeqNo.java
new file mode 100644
index 000000000..189a5b67c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/EndSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EndSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 16;
+
+ public EndSeqNo() {
+ super(16);
+ }
+
+ public EndSeqNo(int data) {
+ super(16, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExDestination.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExDestination.java
new file mode 100644
index 000000000..b1f55c8a1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExDestination.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExDestination extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 100;
+
+ public ExDestination() {
+ super(100);
+ }
+
+ public ExDestination(String data) {
+ super(100, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExchangeForPhysical.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExchangeForPhysical.java
new file mode 100644
index 000000000..46db3e7eb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExchangeForPhysical.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ExchangeForPhysical extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 411;
+ public static final boolean TRUE = true;
+ public static final boolean FALSE = false;
+
+ public ExchangeForPhysical() {
+ super(411);
+ }
+
+ public ExchangeForPhysical(boolean data) {
+ super(411, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecBroker.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecBroker.java
new file mode 100644
index 000000000..a4aad3bd2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecBroker.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecBroker extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 76;
+
+ public ExecBroker() {
+ super(76);
+ }
+
+ public ExecBroker(String data) {
+ super(76, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecID.java
new file mode 100644
index 000000000..bad7cebe6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 17;
+
+ public ExecID() {
+ super(17);
+ }
+
+ public ExecID(String data) {
+ super(17, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecInst.java
new file mode 100644
index 000000000..04d529407
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecInst.java
@@ -0,0 +1,67 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 18;
+ public static final String NOT_HELD = "1";
+ public static final String WORK = "2";
+ public static final String GO_ALONG = "3";
+ public static final String OVER_THE_DAY = "4";
+ public static final String HELD = "5";
+ public static final String PARTICIPATE_DONT_INITIATE = "6";
+ public static final String STRICT_SCALE = "7";
+ public static final String TRY_TO_SCALE = "8";
+ public static final String STAY_ON_BIDSIDE = "9";
+ public static final String STAY_ON_OFFERSIDE = "0";
+ public static final String NO_CROSS = "A";
+ public static final String OK_TO_CROSS = "B";
+ public static final String CALL_FIRST = "C";
+ public static final String PERCENT_OF_VOLUME = "D";
+ public static final String DO_NOT_INCREASE_DNI = "E";
+ public static final String DO_NOT_REDUCE_DNR = "F";
+ public static final String ALL_OR_NONE_AON = "G";
+ public static final String INSTITUTIONS_ONLY = "I";
+ public static final String LAST_PEG = "L";
+ public static final String MIDPRICE_PEG = "M";
+ public static final String NONNEGOTIABLE = "N";
+ public static final String OPENING_PEG = "O";
+ public static final String MARKET_PEG = "P";
+ public static final String PRIMARY_PEG = "R";
+ public static final String SUSPEND = "S";
+ public static final String FIXED_PEG = "T";
+ public static final String CUSTOMER_DISPLAY_INSTRUCTION = "U";
+ public static final String NETTING = "V";
+ public static final String PEG_TO_VWAP = "W";
+
+ public ExecInst() {
+ super(18);
+ }
+
+ public ExecInst(String data) {
+ super(18, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecRefID.java
new file mode 100644
index 000000000..47a2f006e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 19;
+
+ public ExecRefID() {
+ super(19);
+ }
+
+ public ExecRefID(String data) {
+ super(19, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecRestatementReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecRestatementReason.java
new file mode 100644
index 000000000..649630f83
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecRestatementReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ExecRestatementReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 378;
+ public static final int GT_CORPORATE_ACTION = 0;
+ public static final int GT_RENEWAL_RESTATEMENT = 1;
+ public static final int VERBAL_CHANGE = 2;
+ public static final int REPRICING_OF_ORDER = 3;
+ public static final int BROKER_OPTION = 4;
+ public static final int PARTIAL_DECLINE_OF_ORDERQTY = 5;
+
+ public ExecRestatementReason() {
+ super(378);
+ }
+
+ public ExecRestatementReason(int data) {
+ super(378, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecTransType.java
new file mode 100644
index 000000000..ded93db83
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecTransType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ExecTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 20;
+ public static final char NEW = '0';
+ public static final char CANCEL = '1';
+ public static final char CORRECT = '2';
+ public static final char STATUS = '3';
+
+ public ExecTransType() {
+ super(20);
+ }
+
+ public ExecTransType(char data) {
+ super(20, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecType.java
new file mode 100644
index 000000000..8363155be
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExecType.java
@@ -0,0 +1,53 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ExecType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 150;
+ public static final char NEW = '0';
+ public static final char PARTIAL_FILL = '1';
+ public static final char FILL = '2';
+ public static final char DONE_FOR_DAY = '3';
+ public static final char CANCELED = '4';
+ public static final char REPLACE = '5';
+ public static final char PENDING_CANCEL = '6';
+ public static final char STOPPED = '7';
+ public static final char REJECTED = '8';
+ public static final char SUSPENDED = '9';
+ public static final char PENDING_NEW = 'A';
+ public static final char CALCULATED = 'B';
+ public static final char EXPIRED = 'C';
+ public static final char RESTATED = 'D';
+ public static final char PENDING_REPLACE = 'E';
+
+ public ExecType() {
+ super(150);
+ }
+
+ public ExecType(char data) {
+ super(150, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExpireDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExpireDate.java
new file mode 100644
index 000000000..6108bd3a3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExpireDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExpireDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 432;
+
+ public ExpireDate() {
+ super(432);
+ }
+
+ public ExpireDate(String data) {
+ super(432, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExpireTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExpireTime.java
new file mode 100644
index 000000000..f7c03d153
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ExpireTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ExpireTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 126;
+
+ public ExpireTime() {
+ super(126);
+ }
+
+ public ExpireTime(LocalDateTime data) {
+ super(126, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FairValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FairValue.java
new file mode 100644
index 000000000..ec73b6089
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FairValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class FairValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 406;
+
+ public FairValue() {
+ super(406);
+ }
+
+ public FairValue(java.math.BigDecimal data) {
+ super(406, data);
+ }
+
+ public FairValue(double data) {
+ super(406, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FinancialStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FinancialStatus.java
new file mode 100644
index 000000000..ebe8860a3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FinancialStatus.java
@@ -0,0 +1,39 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class FinancialStatus extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 291;
+ public static final char BANKRUPT = '1';
+
+ public FinancialStatus() {
+ super(291);
+ }
+
+ public FinancialStatus(char data) {
+ super(291, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ForexReq.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ForexReq.java
new file mode 100644
index 000000000..57354b72c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ForexReq.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ForexReq extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 121;
+ public static final boolean YES = true;
+ public static final boolean NO = false;
+
+ public ForexReq() {
+ super(121);
+ }
+
+ public ForexReq(boolean data) {
+ super(121, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FutSettDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FutSettDate.java
new file mode 100644
index 000000000..a4463f314
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FutSettDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class FutSettDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 64;
+
+ public FutSettDate() {
+ super(64);
+ }
+
+ public FutSettDate(String data) {
+ super(64, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FutSettDate2.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FutSettDate2.java
new file mode 100644
index 000000000..e076c5f41
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/FutSettDate2.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class FutSettDate2 extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 193;
+
+ public FutSettDate2() {
+ super(193);
+ }
+
+ public FutSettDate2(String data) {
+ super(193, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GTBookingInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GTBookingInst.java
new file mode 100644
index 000000000..7ebc9c262
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GTBookingInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class GTBookingInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 427;
+ public static final int BOOK_OUT_ALL_TRADES_ON_DAY_OF_EXECUTION = 0;
+ public static final int ACCUMULATE_EXECUTIONS_UNTIL_ORDER_IS_FILLED_OR_EXPIRES = 1;
+ public static final int ACCUMULATE_UNTIL_VERBALLY_NOTIFIED_OTHERWISE = 2;
+
+ public GTBookingInst() {
+ super(427);
+ }
+
+ public GTBookingInst(int data) {
+ super(427, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GapFillFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GapFillFlag.java
new file mode 100644
index 000000000..91c20bf00
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GapFillFlag.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class GapFillFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 123;
+ public static final boolean GAP_FILL_MESSAGE_MSGSEQNUM_FIELD_VALID = true;
+ public static final boolean SEQUENCE_RESET_IGNORE_MSGSEQNUM = false;
+
+ public GapFillFlag() {
+ super(123);
+ }
+
+ public GapFillFlag(boolean data) {
+ super(123, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GrossTradeAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GrossTradeAmt.java
new file mode 100644
index 000000000..587a5a30d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/GrossTradeAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class GrossTradeAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 381;
+
+ public GrossTradeAmt() {
+ super(381);
+ }
+
+ public GrossTradeAmt(java.math.BigDecimal data) {
+ super(381, data);
+ }
+
+ public GrossTradeAmt(double data) {
+ super(381, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HaltReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HaltReason.java
new file mode 100644
index 000000000..33dcf473d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HaltReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class HaltReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 327;
+ public static final char ORDER_IMBALANCE = 'I';
+ public static final char EQUIPMENT_CHANGEOVER = 'X';
+ public static final char NEWS_PENDING = 'P';
+ public static final char NEWS_DISSEMINATION = 'D';
+ public static final char ORDER_INFLUX = 'E';
+ public static final char ADDITIONAL_INFORMATION = 'M';
+
+ public HaltReason() {
+ super(327);
+ }
+
+ public HaltReason(char data) {
+ super(327, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HandlInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HandlInst.java
new file mode 100644
index 000000000..12732e366
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HandlInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class HandlInst extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 21;
+ public static final char AUTOMATED_EXECUTION_ORDER_PRIVATE_NO_BROKER_INTERVENTION = '1';
+ public static final char AUTOMATED_EXECUTION_ORDER_PUBLIC_BROKER_INTERVENTION_OK = '2';
+ public static final char MANUAL_ORDER_BEST_EXECUTION = '3';
+
+ public HandlInst() {
+ super(21);
+ }
+
+ public HandlInst(char data) {
+ super(21, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Headline.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Headline.java
new file mode 100644
index 000000000..b29dcbf89
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Headline.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Headline extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 148;
+
+ public Headline() {
+ super(148);
+ }
+
+ public Headline(String data) {
+ super(148, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HeartBtInt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HeartBtInt.java
new file mode 100644
index 000000000..08d52882a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HeartBtInt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class HeartBtInt extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 108;
+
+ public HeartBtInt() {
+ super(108);
+ }
+
+ public HeartBtInt(int data) {
+ super(108, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HighPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HighPx.java
new file mode 100644
index 000000000..d137d8626
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/HighPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class HighPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 332;
+
+ public HighPx() {
+ super(332);
+ }
+
+ public HighPx(java.math.BigDecimal data) {
+ super(332, data);
+ }
+
+ public HighPx(double data) {
+ super(332, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IDSource.java
new file mode 100644
index 000000000..6f3a23c43
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IDSource.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 22;
+ public static final String CUSIP = "1";
+ public static final String SEDOL = "2";
+ public static final String QUIK = "3";
+ public static final String ISIN_NUMBER = "4";
+ public static final String RIC_CODE = "5";
+ public static final String ISO_CURRENCY_CODE = "6";
+ public static final String ISO_COUNTRY_CODE = "7";
+ public static final String EXCHANGE_SYMBOL = "8";
+ public static final String CONSOLIDATED_TAPE_ASSOCIATION = "9";
+
+ public IDSource() {
+ super(22);
+ }
+
+ public IDSource(String data) {
+ super(22, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIID.java
new file mode 100644
index 000000000..790d9ab58
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IOIID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 23;
+
+ public IOIID() {
+ super(23);
+ }
+
+ public IOIID(String data) {
+ super(23, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOINaturalFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOINaturalFlag.java
new file mode 100644
index 000000000..528495364
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOINaturalFlag.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class IOINaturalFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 130;
+ public static final boolean NATURAL = true;
+ public static final boolean NOT_NATURAL = false;
+
+ public IOINaturalFlag() {
+ super(130);
+ }
+
+ public IOINaturalFlag(boolean data) {
+ super(130, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIOthSvc.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIOthSvc.java
new file mode 100644
index 000000000..1ca62af8b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIOthSvc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOIOthSvc extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 24;
+
+ public IOIOthSvc() {
+ super(24);
+ }
+
+ public IOIOthSvc(char data) {
+ super(24, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIQltyInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIQltyInd.java
new file mode 100644
index 000000000..3ce514cfe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIQltyInd.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOIQltyInd extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 25;
+ public static final char LOW = 'L';
+ public static final char MEDIUM = 'M';
+ public static final char HIGH = 'H';
+
+ public IOIQltyInd() {
+ super(25);
+ }
+
+ public IOIQltyInd(char data) {
+ super(25, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIQualifier.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIQualifier.java
new file mode 100644
index 000000000..1256165c4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIQualifier.java
@@ -0,0 +1,54 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOIQualifier extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 104;
+ public static final char ALL_OR_NONE = 'A';
+ public static final char AT_THE_CLOSE = 'C';
+ public static final char IN_TOUCH_WITH = 'I';
+ public static final char LIMIT = 'L';
+ public static final char MORE_BEHIND = 'M';
+ public static final char AT_THE_OPEN = 'O';
+ public static final char TAKING_A_POSITION = 'P';
+ public static final char AT_THE_MARKET = 'Q';
+ public static final char READY_TO_TRADE = 'R';
+ public static final char PORTFOLIO_SHOWN = 'S';
+ public static final char THROUGH_THE_DAY = 'T';
+ public static final char VERSUS = 'V';
+ public static final char INDICATION_WORKING_AWAY = 'W';
+ public static final char CROSSING_OPPORTUNITY = 'X';
+ public static final char AT_THE_MIDPOINT = 'Y';
+ public static final char PREOPEN = 'Z';
+
+ public IOIQualifier() {
+ super(104);
+ }
+
+ public IOIQualifier(char data) {
+ super(104, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIRefID.java
new file mode 100644
index 000000000..a09016515
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IOIRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 26;
+
+ public IOIRefID() {
+ super(26);
+ }
+
+ public IOIRefID(String data) {
+ super(26, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIShares.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIShares.java
new file mode 100644
index 000000000..a490f331f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOIShares.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IOIShares extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 27;
+
+ public IOIShares() {
+ super(27);
+ }
+
+ public IOIShares(String data) {
+ super(27, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOITransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOITransType.java
new file mode 100644
index 000000000..107d2c079
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IOITransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOITransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 28;
+ public static final char NEW = 'N';
+ public static final char CANCEL = 'C';
+ public static final char REPLACE = 'R';
+
+ public IOITransType() {
+ super(28);
+ }
+
+ public IOITransType(char data) {
+ super(28, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/InViewOfCommon.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/InViewOfCommon.java
new file mode 100644
index 000000000..a28e8562a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/InViewOfCommon.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class InViewOfCommon extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 328;
+ public static final boolean HALT_WAS_DUE_TO_COMMON_STOCK_BEING_HALTED = true;
+ public static final boolean HALT_WAS_NOT_RELATED_TO_A_HALT_OF_THE_COMMON_STOCK = false;
+
+ public InViewOfCommon() {
+ super(328);
+ }
+
+ public InViewOfCommon(boolean data) {
+ super(328, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IncTaxInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IncTaxInd.java
new file mode 100644
index 000000000..800be45be
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/IncTaxInd.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class IncTaxInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 416;
+
+ public IncTaxInd() {
+ super(416);
+ }
+
+ public IncTaxInd(int data) {
+ super(416, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Issuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Issuer.java
new file mode 100644
index 000000000..d3a6fa25b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Issuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Issuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 106;
+
+ public Issuer() {
+ super(106);
+ }
+
+ public Issuer(String data) {
+ super(106, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastCapacity.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastCapacity.java
new file mode 100644
index 000000000..e3175d5ce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastCapacity.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class LastCapacity extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 29;
+ public static final char AGENT = '1';
+ public static final char CROSS_AS_AGENT = '2';
+ public static final char CROSS_AS_PRINCIPAL = '3';
+ public static final char PRINCIPAL = '4';
+
+ public LastCapacity() {
+ super(29);
+ }
+
+ public LastCapacity(char data) {
+ super(29, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastForwardPoints.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastForwardPoints.java
new file mode 100644
index 000000000..95c1a6cf2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastForwardPoints.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastForwardPoints extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 195;
+
+ public LastForwardPoints() {
+ super(195);
+ }
+
+ public LastForwardPoints(java.math.BigDecimal data) {
+ super(195, data);
+ }
+
+ public LastForwardPoints(double data) {
+ super(195, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastMkt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastMkt.java
new file mode 100644
index 000000000..bcc0f1d89
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastMkt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LastMkt extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 30;
+
+ public LastMkt() {
+ super(30);
+ }
+
+ public LastMkt(String data) {
+ super(30, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastMsgSeqNumProcessed.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastMsgSeqNumProcessed.java
new file mode 100644
index 000000000..749b003c7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastMsgSeqNumProcessed.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LastMsgSeqNumProcessed extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 369;
+
+ public LastMsgSeqNumProcessed() {
+ super(369);
+ }
+
+ public LastMsgSeqNumProcessed(int data) {
+ super(369, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastPx.java
new file mode 100644
index 000000000..dc0cfc918
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 31;
+
+ public LastPx() {
+ super(31);
+ }
+
+ public LastPx(java.math.BigDecimal data) {
+ super(31, data);
+ }
+
+ public LastPx(double data) {
+ super(31, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastShares.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastShares.java
new file mode 100644
index 000000000..ea36864ac
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastShares.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastShares extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 32;
+
+ public LastShares() {
+ super(32);
+ }
+
+ public LastShares(java.math.BigDecimal data) {
+ super(32, data);
+ }
+
+ public LastShares(double data) {
+ super(32, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastSpotRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastSpotRate.java
new file mode 100644
index 000000000..6d26de4e9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LastSpotRate.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastSpotRate extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 194;
+
+ public LastSpotRate() {
+ super(194);
+ }
+
+ public LastSpotRate(java.math.BigDecimal data) {
+ super(194, data);
+ }
+
+ public LastSpotRate(double data) {
+ super(194, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LeavesQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LeavesQty.java
new file mode 100644
index 000000000..89fbae06a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LeavesQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LeavesQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 151;
+
+ public LeavesQty() {
+ super(151);
+ }
+
+ public LeavesQty(java.math.BigDecimal data) {
+ super(151, data);
+ }
+
+ public LeavesQty(double data) {
+ super(151, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LinesOfText.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LinesOfText.java
new file mode 100644
index 000000000..4e4800af0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LinesOfText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LinesOfText extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 33;
+
+ public LinesOfText() {
+ super(33);
+ }
+
+ public LinesOfText(int data) {
+ super(33, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityIndType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityIndType.java
new file mode 100644
index 000000000..7bdf9199e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityIndType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LiquidityIndType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 409;
+
+ public LiquidityIndType() {
+ super(409);
+ }
+
+ public LiquidityIndType(int data) {
+ super(409, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityNumSecurities.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityNumSecurities.java
new file mode 100644
index 000000000..29d1ca032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityNumSecurities.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LiquidityNumSecurities extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 441;
+
+ public LiquidityNumSecurities() {
+ super(441);
+ }
+
+ public LiquidityNumSecurities(int data) {
+ super(441, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityPctHigh.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityPctHigh.java
new file mode 100644
index 000000000..c56eed181
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityPctHigh.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LiquidityPctHigh extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 403;
+
+ public LiquidityPctHigh() {
+ super(403);
+ }
+
+ public LiquidityPctHigh(double data) {
+ super(403, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityPctLow.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityPctLow.java
new file mode 100644
index 000000000..30f5cdf77
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityPctLow.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LiquidityPctLow extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 402;
+
+ public LiquidityPctLow() {
+ super(402);
+ }
+
+ public LiquidityPctLow(double data) {
+ super(402, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityValue.java
new file mode 100644
index 000000000..e07c68abb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LiquidityValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LiquidityValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 404;
+
+ public LiquidityValue() {
+ super(404);
+ }
+
+ public LiquidityValue(java.math.BigDecimal data) {
+ super(404, data);
+ }
+
+ public LiquidityValue(double data) {
+ super(404, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListExecInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListExecInst.java
new file mode 100644
index 000000000..147b71ac2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListExecInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListExecInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 69;
+
+ public ListExecInst() {
+ super(69);
+ }
+
+ public ListExecInst(String data) {
+ super(69, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListExecInstType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListExecInstType.java
new file mode 100644
index 000000000..155f05789
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListExecInstType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ListExecInstType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 433;
+
+ public ListExecInstType() {
+ super(433);
+ }
+
+ public ListExecInstType(char data) {
+ super(433, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListID.java
new file mode 100644
index 000000000..1bcabcd84
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 66;
+
+ public ListID() {
+ super(66);
+ }
+
+ public ListID(String data) {
+ super(66, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListName.java
new file mode 100644
index 000000000..b82a1d326
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 392;
+
+ public ListName() {
+ super(392);
+ }
+
+ public ListName(String data) {
+ super(392, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListOrderStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListOrderStatus.java
new file mode 100644
index 000000000..7ad88776c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListOrderStatus.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ListOrderStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 431;
+
+ public ListOrderStatus() {
+ super(431);
+ }
+
+ public ListOrderStatus(int data) {
+ super(431, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListSeqNo.java
new file mode 100644
index 000000000..86ff04bce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ListSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 67;
+
+ public ListSeqNo() {
+ super(67);
+ }
+
+ public ListSeqNo(int data) {
+ super(67, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListStatusText.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListStatusText.java
new file mode 100644
index 000000000..bac45917d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListStatusText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListStatusText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 444;
+
+ public ListStatusText() {
+ super(444);
+ }
+
+ public ListStatusText(String data) {
+ super(444, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListStatusType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListStatusType.java
new file mode 100644
index 000000000..77cc87f35
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ListStatusType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ListStatusType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 429;
+
+ public ListStatusType() {
+ super(429);
+ }
+
+ public ListStatusType(int data) {
+ super(429, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LocateReqd.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LocateReqd.java
new file mode 100644
index 000000000..a3da5a620
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LocateReqd.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class LocateReqd extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 114;
+ public static final boolean YES = true;
+ public static final boolean NO = false;
+
+ public LocateReqd() {
+ super(114);
+ }
+
+ public LocateReqd(boolean data) {
+ super(114, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LocationID.java
new file mode 100644
index 000000000..126c1298e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 283;
+
+ public LocationID() {
+ super(283);
+ }
+
+ public LocationID(String data) {
+ super(283, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LowPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LowPx.java
new file mode 100644
index 000000000..2c36e3700
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/LowPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LowPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 333;
+
+ public LowPx() {
+ super(333);
+ }
+
+ public LowPx(java.math.BigDecimal data) {
+ super(333, data);
+ }
+
+ public LowPx(double data) {
+ super(333, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryBuyer.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryBuyer.java
new file mode 100644
index 000000000..6ed01666f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryBuyer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryBuyer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 288;
+
+ public MDEntryBuyer() {
+ super(288);
+ }
+
+ public MDEntryBuyer(String data) {
+ super(288, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryDate.java
new file mode 100644
index 000000000..10e4bc773
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryDate.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcDateOnlyField;
+
+import java.time.LocalDate;
+
+public class MDEntryDate extends UtcDateOnlyField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 272;
+
+ public MDEntryDate() {
+ super(272);
+ }
+
+ public MDEntryDate(LocalDate data) {
+ super(272, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryID.java
new file mode 100644
index 000000000..9649f8c72
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 278;
+
+ public MDEntryID() {
+ super(278);
+ }
+
+ public MDEntryID(String data) {
+ super(278, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryOriginator.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryOriginator.java
new file mode 100644
index 000000000..262934358
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryOriginator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryOriginator extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 282;
+
+ public MDEntryOriginator() {
+ super(282);
+ }
+
+ public MDEntryOriginator(String data) {
+ super(282, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryPositionNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryPositionNo.java
new file mode 100644
index 000000000..9a4a71987
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryPositionNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MDEntryPositionNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 290;
+
+ public MDEntryPositionNo() {
+ super(290);
+ }
+
+ public MDEntryPositionNo(int data) {
+ super(290, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryPx.java
new file mode 100644
index 000000000..300bc672f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MDEntryPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 270;
+
+ public MDEntryPx() {
+ super(270);
+ }
+
+ public MDEntryPx(java.math.BigDecimal data) {
+ super(270, data);
+ }
+
+ public MDEntryPx(double data) {
+ super(270, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryRefID.java
new file mode 100644
index 000000000..945bb0791
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 280;
+
+ public MDEntryRefID() {
+ super(280);
+ }
+
+ public MDEntryRefID(String data) {
+ super(280, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntrySeller.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntrySeller.java
new file mode 100644
index 000000000..1f1c7a174
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntrySeller.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntrySeller extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 289;
+
+ public MDEntrySeller() {
+ super(289);
+ }
+
+ public MDEntrySeller(String data) {
+ super(289, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntrySize.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntrySize.java
new file mode 100644
index 000000000..7b0effbd9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntrySize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MDEntrySize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 271;
+
+ public MDEntrySize() {
+ super(271);
+ }
+
+ public MDEntrySize(java.math.BigDecimal data) {
+ super(271, data);
+ }
+
+ public MDEntrySize(double data) {
+ super(271, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryTime.java
new file mode 100644
index 000000000..a011fd981
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeOnlyField;
+
+import java.time.LocalTime;
+
+public class MDEntryTime extends UtcTimeOnlyField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 273;
+
+ public MDEntryTime() {
+ super(273);
+ }
+
+ public MDEntryTime(LocalTime data) {
+ super(273, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryType.java
new file mode 100644
index 000000000..7756d0f5b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDEntryType.java
@@ -0,0 +1,48 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MDEntryType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 269;
+ public static final char BID = '0';
+ public static final char OFFER = '1';
+ public static final char TRADE = '2';
+ public static final char INDEX_VALUE = '3';
+ public static final char OPENING_PRICE = '4';
+ public static final char CLOSING_PRICE = '5';
+ public static final char SETTLEMENT_PRICE = '6';
+ public static final char TRADING_SESSION_HIGH_PRICE = '7';
+ public static final char TRADING_SESSION_LOW_PRICE = '8';
+ public static final char TRADING_SESSION_VWAP_PRICE = '9';
+
+ public MDEntryType() {
+ super(269);
+ }
+
+ public MDEntryType(char data) {
+ super(269, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDMkt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDMkt.java
new file mode 100644
index 000000000..d5197eb7c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDMkt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDMkt extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 275;
+
+ public MDMkt() {
+ super(275);
+ }
+
+ public MDMkt(String data) {
+ super(275, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDReqID.java
new file mode 100644
index 000000000..906b0f11c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 262;
+
+ public MDReqID() {
+ super(262);
+ }
+
+ public MDReqID(String data) {
+ super(262, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDReqRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDReqRejReason.java
new file mode 100644
index 000000000..d3df705fb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDReqRejReason.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MDReqRejReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 281;
+ public static final char UNKNOWN_SYMBOL = '0';
+ public static final char DUPLICATE_MDREQID = '1';
+ public static final char INSUFFICIENT_BANDWIDTH = '2';
+ public static final char INSUFFICIENT_PERMISSIONS = '3';
+ public static final char UNSUPPORTED_SUBSCRIPTIONREQUESTTYPE = '4';
+ public static final char UNSUPPORTED_MARKETDEPTH = '5';
+ public static final char UNSUPPORTED_MDUPDATETYPE = '6';
+ public static final char UNSUPPORTED_AGGREGATEDBOOK = '7';
+ public static final char UNSUPPORTED_MDENTRYTYPE = '8';
+
+ public MDReqRejReason() {
+ super(281);
+ }
+
+ public MDReqRejReason(char data) {
+ super(281, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDUpdateAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDUpdateAction.java
new file mode 100644
index 000000000..1a23a87d4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDUpdateAction.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MDUpdateAction extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 279;
+ public static final char NEW = '0';
+ public static final char CHANGE = '1';
+ public static final char DELETE = '2';
+
+ public MDUpdateAction() {
+ super(279);
+ }
+
+ public MDUpdateAction(char data) {
+ super(279, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDUpdateType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDUpdateType.java
new file mode 100644
index 000000000..acc25f767
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MDUpdateType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MDUpdateType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 265;
+ public static final int FULL_REFRESH = 0;
+ public static final int INCREMENTAL_REFRESH = 1;
+
+ public MDUpdateType() {
+ super(265);
+ }
+
+ public MDUpdateType(int data) {
+ super(265, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MarketDepth.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MarketDepth.java
new file mode 100644
index 000000000..8e72fadf4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MarketDepth.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MarketDepth extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 264;
+
+ public MarketDepth() {
+ super(264);
+ }
+
+ public MarketDepth(int data) {
+ super(264, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaturityDay.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaturityDay.java
new file mode 100644
index 000000000..d9caa74d5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaturityDay.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MaturityDay extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 205;
+
+ public MaturityDay() {
+ super(205);
+ }
+
+ public MaturityDay(String data) {
+ super(205, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaturityMonthYear.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaturityMonthYear.java
new file mode 100644
index 000000000..9e9a44063
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaturityMonthYear.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MaturityMonthYear extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 200;
+
+ public MaturityMonthYear() {
+ super(200);
+ }
+
+ public MaturityMonthYear(String data) {
+ super(200, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxFloor.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxFloor.java
new file mode 100644
index 000000000..7dc13f71c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxFloor.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MaxFloor extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 111;
+
+ public MaxFloor() {
+ super(111);
+ }
+
+ public MaxFloor(java.math.BigDecimal data) {
+ super(111, data);
+ }
+
+ public MaxFloor(double data) {
+ super(111, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxMessageSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxMessageSize.java
new file mode 100644
index 000000000..bda4cc032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxMessageSize.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MaxMessageSize extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 383;
+
+ public MaxMessageSize() {
+ super(383);
+ }
+
+ public MaxMessageSize(int data) {
+ super(383, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxShow.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxShow.java
new file mode 100644
index 000000000..2877fe223
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MaxShow.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MaxShow extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 210;
+
+ public MaxShow() {
+ super(210);
+ }
+
+ public MaxShow(java.math.BigDecimal data) {
+ super(210, data);
+ }
+
+ public MaxShow(double data) {
+ super(210, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MessageEncoding.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MessageEncoding.java
new file mode 100644
index 000000000..bd8d1c0de
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MessageEncoding.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MessageEncoding extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 347;
+
+ public MessageEncoding() {
+ super(347);
+ }
+
+ public MessageEncoding(String data) {
+ super(347, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MinQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MinQty.java
new file mode 100644
index 000000000..c7fb2ecee
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MinQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MinQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 110;
+
+ public MinQty() {
+ super(110);
+ }
+
+ public MinQty(java.math.BigDecimal data) {
+ super(110, data);
+ }
+
+ public MinQty(double data) {
+ super(110, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeAmt.java
new file mode 100644
index 000000000..f1d3054c6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MiscFeeAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 137;
+
+ public MiscFeeAmt() {
+ super(137);
+ }
+
+ public MiscFeeAmt(java.math.BigDecimal data) {
+ super(137, data);
+ }
+
+ public MiscFeeAmt(double data) {
+ super(137, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeCurr.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeCurr.java
new file mode 100644
index 000000000..fe02d4de4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeCurr.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MiscFeeCurr extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 138;
+
+ public MiscFeeCurr() {
+ super(138);
+ }
+
+ public MiscFeeCurr(String data) {
+ super(138, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeType.java
new file mode 100644
index 000000000..64305a2a1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MiscFeeType.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MiscFeeType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 139;
+ public static final char REGULATORY = '1';
+ public static final char TAX = '2';
+ public static final char LOCAL_COMMISSION = '3';
+ public static final char EXCHANGE_FEES = '4';
+ public static final char STAMP = '5';
+ public static final char LEVY = '6';
+ public static final char OTHER = '7';
+ public static final char MARKUP = '8';
+ public static final char CONSUMPTION_TAX = '9';
+
+ public MiscFeeType() {
+ super(139);
+ }
+
+ public MiscFeeType(char data) {
+ super(139, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgDirection.java
new file mode 100644
index 000000000..227552f5a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgDirection.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MsgDirection extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 385;
+ public static final char SEND = 'S';
+ public static final char RECEIVE = 'R';
+
+ public MsgDirection() {
+ super(385);
+ }
+
+ public MsgDirection(char data) {
+ super(385, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgSeqNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgSeqNum.java
new file mode 100644
index 000000000..e9d9b1e38
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgSeqNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MsgSeqNum extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 34;
+
+ public MsgSeqNum() {
+ super(34);
+ }
+
+ public MsgSeqNum(int data) {
+ super(34, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgType.java
new file mode 100644
index 000000000..786a00c0d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MsgType.java
@@ -0,0 +1,84 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MsgType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 35;
+ public static final String HEARTBEAT = "0";
+ public static final String TEST_REQUEST = "1";
+ public static final String RESEND_REQUEST = "2";
+ public static final String REJECT = "3";
+ public static final String SEQUENCE_RESET = "4";
+ public static final String LOGOUT = "5";
+ public static final String INDICATION_OF_INTEREST = "6";
+ public static final String ADVERTISEMENT = "7";
+ public static final String EXECUTION_REPORT = "8";
+ public static final String ORDER_CANCEL_REJECT = "9";
+ public static final String LOGON = "A";
+ public static final String NEWS = "B";
+ public static final String EMAIL = "C";
+ public static final String ORDER_SINGLE = "D";
+ public static final String ORDER_LIST = "E";
+ public static final String ORDER_CANCEL_REQUEST = "F";
+ public static final String ORDER_CANCEL_REPLACE_REQUEST = "G";
+ public static final String ORDER_STATUS_REQUEST = "H";
+ public static final String ALLOCATION = "J";
+ public static final String LIST_CANCEL_REQUEST = "K";
+ public static final String LIST_EXECUTE = "L";
+ public static final String LIST_STATUS_REQUEST = "M";
+ public static final String LIST_STATUS = "N";
+ public static final String ALLOCATION_ACK = "P";
+ public static final String DONT_KNOW_TRADE = "Q";
+ public static final String QUOTE_REQUEST = "R";
+ public static final String QUOTE = "S";
+ public static final String SETTLEMENT_INSTRUCTIONS = "T";
+ public static final String MARKET_DATA_REQUEST = "V";
+ public static final String MARKET_DATA_SNAPSHOT = "W";
+ public static final String MARKET_DATA_INCREMENTAL_REFRESH = "X";
+ public static final String MARKET_DATA_REQUEST_REJECT = "Y";
+ public static final String QUOTE_CANCEL = "Z";
+ public static final String QUOTE_STATUS_REQUEST = "a";
+ public static final String MASS_QUOTE_ACKNOWLEDGEMENT = "b";
+ public static final String SECURITY_DEFINITION_REQUEST = "c";
+ public static final String SECURITY_DEFINITION = "d";
+ public static final String SECURITY_STATUS_REQUEST = "e";
+ public static final String SECURITY_STATUS = "f";
+ public static final String TRADING_SESSION_STATUS_REQUEST = "g";
+ public static final String TRADING_SESSION_STATUS = "h";
+ public static final String MASS_QUOTE = "i";
+ public static final String BUSINESS_MESSAGE_REJECT = "j";
+ public static final String BID_REQUEST = "k";
+ public static final String BID_RESPONSE = "l";
+ public static final String LIST_STRIKE_PRICE = "m";
+
+ public MsgType() {
+ super(35);
+ }
+
+ public MsgType(String data) {
+ super(35, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MultiLegReportingType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MultiLegReportingType.java
new file mode 100644
index 000000000..b52425392
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/MultiLegReportingType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MultiLegReportingType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 442;
+
+ public MultiLegReportingType() {
+ super(442);
+ }
+
+ public MultiLegReportingType(char data) {
+ super(442, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NetGrossInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NetGrossInd.java
new file mode 100644
index 000000000..12b3eb078
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NetGrossInd.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NetGrossInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 430;
+
+ public NetGrossInd() {
+ super(430);
+ }
+
+ public NetGrossInd(int data) {
+ super(430, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NetMoney.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NetMoney.java
new file mode 100644
index 000000000..61c7a52bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NetMoney.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class NetMoney extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 118;
+
+ public NetMoney() {
+ super(118);
+ }
+
+ public NetMoney(java.math.BigDecimal data) {
+ super(118, data);
+ }
+
+ public NetMoney(double data) {
+ super(118, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NewSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NewSeqNo.java
new file mode 100644
index 000000000..d5f1e2fd5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NewSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NewSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 36;
+
+ public NewSeqNo() {
+ super(36);
+ }
+
+ public NewSeqNo(int data) {
+ super(36, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoAllocs.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoAllocs.java
new file mode 100644
index 000000000..fa019071c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoAllocs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoAllocs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 78;
+
+ public NoAllocs() {
+ super(78);
+ }
+
+ public NoAllocs(int data) {
+ super(78, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoBidComponents.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoBidComponents.java
new file mode 100644
index 000000000..086689ec1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoBidComponents.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoBidComponents extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 420;
+
+ public NoBidComponents() {
+ super(420);
+ }
+
+ public NoBidComponents(int data) {
+ super(420, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoBidDescriptors.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoBidDescriptors.java
new file mode 100644
index 000000000..93a16541d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoBidDescriptors.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoBidDescriptors extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 398;
+
+ public NoBidDescriptors() {
+ super(398);
+ }
+
+ public NoBidDescriptors(int data) {
+ super(398, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoContraBrokers.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoContraBrokers.java
new file mode 100644
index 000000000..f8b474bce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoContraBrokers.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoContraBrokers extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 382;
+
+ public NoContraBrokers() {
+ super(382);
+ }
+
+ public NoContraBrokers(int data) {
+ super(382, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoDlvyInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoDlvyInst.java
new file mode 100644
index 000000000..00888c5d3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoDlvyInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoDlvyInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 85;
+
+ public NoDlvyInst() {
+ super(85);
+ }
+
+ public NoDlvyInst(int data) {
+ super(85, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoExecs.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoExecs.java
new file mode 100644
index 000000000..25e8fa9a7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoExecs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoExecs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 124;
+
+ public NoExecs() {
+ super(124);
+ }
+
+ public NoExecs(int data) {
+ super(124, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoIOIQualifiers.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoIOIQualifiers.java
new file mode 100644
index 000000000..656cb366a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoIOIQualifiers.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoIOIQualifiers extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 199;
+
+ public NoIOIQualifiers() {
+ super(199);
+ }
+
+ public NoIOIQualifiers(int data) {
+ super(199, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMDEntries.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMDEntries.java
new file mode 100644
index 000000000..1a56cc311
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMDEntries.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMDEntries extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 268;
+
+ public NoMDEntries() {
+ super(268);
+ }
+
+ public NoMDEntries(int data) {
+ super(268, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMDEntryTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMDEntryTypes.java
new file mode 100644
index 000000000..7c257e04a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMDEntryTypes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMDEntryTypes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 267;
+
+ public NoMDEntryTypes() {
+ super(267);
+ }
+
+ public NoMDEntryTypes(int data) {
+ super(267, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMiscFees.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMiscFees.java
new file mode 100644
index 000000000..04e5cad9c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMiscFees.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMiscFees extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 136;
+
+ public NoMiscFees() {
+ super(136);
+ }
+
+ public NoMiscFees(int data) {
+ super(136, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMsgTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMsgTypes.java
new file mode 100644
index 000000000..e1dbaae5f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoMsgTypes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMsgTypes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 384;
+
+ public NoMsgTypes() {
+ super(384);
+ }
+
+ public NoMsgTypes(int data) {
+ super(384, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoOrders.java
new file mode 100644
index 000000000..2e9b2755d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 73;
+
+ public NoOrders() {
+ super(73);
+ }
+
+ public NoOrders(int data) {
+ super(73, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoQuoteEntries.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoQuoteEntries.java
new file mode 100644
index 000000000..1ca30fd8f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoQuoteEntries.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoQuoteEntries extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 295;
+
+ public NoQuoteEntries() {
+ super(295);
+ }
+
+ public NoQuoteEntries(int data) {
+ super(295, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoQuoteSets.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoQuoteSets.java
new file mode 100644
index 000000000..a1538a37b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoQuoteSets.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoQuoteSets extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 296;
+
+ public NoQuoteSets() {
+ super(296);
+ }
+
+ public NoQuoteSets(int data) {
+ super(296, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRelatedSym.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRelatedSym.java
new file mode 100644
index 000000000..4d0644498
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRelatedSym.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRelatedSym extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 146;
+
+ public NoRelatedSym() {
+ super(146);
+ }
+
+ public NoRelatedSym(int data) {
+ super(146, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRoutingIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRoutingIDs.java
new file mode 100644
index 000000000..7447bb945
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRoutingIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRoutingIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 215;
+
+ public NoRoutingIDs() {
+ super(215);
+ }
+
+ public NoRoutingIDs(int data) {
+ super(215, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRpts.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRpts.java
new file mode 100644
index 000000000..582b07ad5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoRpts.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRpts extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 82;
+
+ public NoRpts() {
+ super(82);
+ }
+
+ public NoRpts(int data) {
+ super(82, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoStrikes.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoStrikes.java
new file mode 100644
index 000000000..09efdd20b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoStrikes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoStrikes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 428;
+
+ public NoStrikes() {
+ super(428);
+ }
+
+ public NoStrikes(int data) {
+ super(428, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoTradingSessions.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoTradingSessions.java
new file mode 100644
index 000000000..406353149
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NoTradingSessions.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoTradingSessions extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 386;
+
+ public NoTradingSessions() {
+ super(386);
+ }
+
+ public NoTradingSessions(int data) {
+ super(386, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NotifyBrokerOfCredit.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NotifyBrokerOfCredit.java
new file mode 100644
index 000000000..803ff4ca2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NotifyBrokerOfCredit.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class NotifyBrokerOfCredit extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 208;
+ public static final boolean DETAILS_SHOULD_BE_COMMUNICATED = true;
+ public static final boolean DETAILS_SHOULD_NOT_BE_COMMUNICATED = false;
+
+ public NotifyBrokerOfCredit() {
+ super(208);
+ }
+
+ public NotifyBrokerOfCredit(boolean data) {
+ super(208, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumBidders.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumBidders.java
new file mode 100644
index 000000000..e561c355a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumBidders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumBidders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 417;
+
+ public NumBidders() {
+ super(417);
+ }
+
+ public NumBidders(int data) {
+ super(417, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumDaysInterest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumDaysInterest.java
new file mode 100644
index 000000000..ecf7b3d68
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumDaysInterest.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumDaysInterest extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 157;
+
+ public NumDaysInterest() {
+ super(157);
+ }
+
+ public NumDaysInterest(int data) {
+ super(157, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumTickets.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumTickets.java
new file mode 100644
index 000000000..a006a2920
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumTickets.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumTickets extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 395;
+
+ public NumTickets() {
+ super(395);
+ }
+
+ public NumTickets(int data) {
+ super(395, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumberOfOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumberOfOrders.java
new file mode 100644
index 000000000..0eebeba12
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/NumberOfOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumberOfOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 346;
+
+ public NumberOfOrders() {
+ super(346);
+ }
+
+ public NumberOfOrders(int data) {
+ super(346, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferForwardPoints.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferForwardPoints.java
new file mode 100644
index 000000000..a4fd12bbf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferForwardPoints.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferForwardPoints extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 191;
+
+ public OfferForwardPoints() {
+ super(191);
+ }
+
+ public OfferForwardPoints(java.math.BigDecimal data) {
+ super(191, data);
+ }
+
+ public OfferForwardPoints(double data) {
+ super(191, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferPx.java
new file mode 100644
index 000000000..3c9534226
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 133;
+
+ public OfferPx() {
+ super(133);
+ }
+
+ public OfferPx(java.math.BigDecimal data) {
+ super(133, data);
+ }
+
+ public OfferPx(double data) {
+ super(133, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferSize.java
new file mode 100644
index 000000000..64ac58112
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 135;
+
+ public OfferSize() {
+ super(135);
+ }
+
+ public OfferSize(java.math.BigDecimal data) {
+ super(135, data);
+ }
+
+ public OfferSize(double data) {
+ super(135, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferSpotRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferSpotRate.java
new file mode 100644
index 000000000..ac8e75252
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OfferSpotRate.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferSpotRate extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 190;
+
+ public OfferSpotRate() {
+ super(190);
+ }
+
+ public OfferSpotRate(java.math.BigDecimal data) {
+ super(190, data);
+ }
+
+ public OfferSpotRate(double data) {
+ super(190, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfCompID.java
new file mode 100644
index 000000000..c4281ca1a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OnBehalfOfCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 115;
+
+ public OnBehalfOfCompID() {
+ super(115);
+ }
+
+ public OnBehalfOfCompID(String data) {
+ super(115, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfLocationID.java
new file mode 100644
index 000000000..2acf2a134
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OnBehalfOfLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 144;
+
+ public OnBehalfOfLocationID() {
+ super(144);
+ }
+
+ public OnBehalfOfLocationID(String data) {
+ super(144, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfSendingTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfSendingTime.java
new file mode 100644
index 000000000..a6b436a3d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfSendingTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class OnBehalfOfSendingTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 370;
+
+ public OnBehalfOfSendingTime() {
+ super(370);
+ }
+
+ public OnBehalfOfSendingTime(LocalDateTime data) {
+ super(370, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfSubID.java
new file mode 100644
index 000000000..2d3faebc4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OnBehalfOfSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OnBehalfOfSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 116;
+
+ public OnBehalfOfSubID() {
+ super(116);
+ }
+
+ public OnBehalfOfSubID(String data) {
+ super(116, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OpenClose.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OpenClose.java
new file mode 100644
index 000000000..e45d0c68c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OpenClose.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OpenClose extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 77;
+ public static final char OPEN = 'O';
+ public static final char CLOSE = 'C';
+
+ public OpenClose() {
+ super(77);
+ }
+
+ public OpenClose(char data) {
+ super(77, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OpenCloseSettleFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OpenCloseSettleFlag.java
new file mode 100644
index 000000000..8302df760
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OpenCloseSettleFlag.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OpenCloseSettleFlag extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 286;
+ public static final char DAILY_OPEN_CLOSE__SETTLEMENT_PRICE = '0';
+ public static final char SESSION_OPEN_CLOSE__SETTLEMENT_PRICE = '1';
+ public static final char DELIVERY_SETTLEMENT_PRICE = '2';
+
+ public OpenCloseSettleFlag() {
+ super(286);
+ }
+
+ public OpenCloseSettleFlag(char data) {
+ super(286, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OptAttribute.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OptAttribute.java
new file mode 100644
index 000000000..55a23b733
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OptAttribute.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OptAttribute extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 206;
+
+ public OptAttribute() {
+ super(206);
+ }
+
+ public OptAttribute(char data) {
+ super(206, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdRejReason.java
new file mode 100644
index 000000000..4669bddc0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdRejReason.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class OrdRejReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 103;
+ public static final int BROKER_OPTION = 0;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE_CLOSED = 2;
+ public static final int ORDER_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int UNKNOWN_ORDER = 5;
+ public static final int DUPLICATE_ORDER = 6;
+ public static final int DUPLICATE_VERBALYES = 7;
+ public static final int STALE_ORDER = 8;
+
+ public OrdRejReason() {
+ super(103);
+ }
+
+ public OrdRejReason(int data) {
+ super(103, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdStatus.java
new file mode 100644
index 000000000..b3ea79b8b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdStatus.java
@@ -0,0 +1,53 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OrdStatus extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 39;
+ public static final char NEW = '0';
+ public static final char PARTIALLY_FILLED = '1';
+ public static final char FILLED = '2';
+ public static final char DONE_FOR_DAY = '3';
+ public static final char CANCELED = '4';
+ public static final char REPLACED = '5';
+ public static final char PENDING_CANCEL = '6';
+ public static final char STOPPED = '7';
+ public static final char REJECTED = '8';
+ public static final char SUSPENDED = '9';
+ public static final char PENDING_NEW = 'A';
+ public static final char CALCULATED = 'B';
+ public static final char EXPIRED = 'C';
+ public static final char ACCEPTED_FOR_BIDDING = 'D';
+ public static final char PENDING_REPLACE = 'E';
+
+ public OrdStatus() {
+ super(39);
+ }
+
+ public OrdStatus(char data) {
+ super(39, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdType.java
new file mode 100644
index 000000000..e85c08fdd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrdType.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OrdType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 40;
+ public static final char MARKET = '1';
+ public static final char LIMIT = '2';
+ public static final char STOP = '3';
+ public static final char STOP_LIMIT = '4';
+ public static final char MARKET_ON_CLOSE = '5';
+ public static final char WITH_OR_WITHOUT = '6';
+ public static final char LIMIT_OR_BETTER = '7';
+ public static final char LIMIT_WITH_OR_WITHOUT = '8';
+ public static final char ON_BASIS = '9';
+ public static final char ON_CLOSE = 'A';
+ public static final char LIMIT_ON_CLOSE = 'B';
+ public static final char FOREX_MARKET = 'C';
+ public static final char PREVIOUSLY_QUOTED = 'D';
+ public static final char PREVIOUSLY_INDICATED = 'E';
+ public static final char FOREX_LIMIT = 'F';
+ public static final char FOREX_SWAP = 'G';
+ public static final char FOREX_PREVIOUSLY_QUOTED = 'H';
+ public static final char FUNARI = 'I';
+ public static final char PEGGED = 'P';
+
+ public OrdType() {
+ super(40);
+ }
+
+ public OrdType(char data) {
+ super(40, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderID.java
new file mode 100644
index 000000000..ccde094ad
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrderID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 37;
+
+ public OrderID() {
+ super(37);
+ }
+
+ public OrderID(String data) {
+ super(37, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderQty.java
new file mode 100644
index 000000000..82c564fd5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 38;
+
+ public OrderQty() {
+ super(38);
+ }
+
+ public OrderQty(java.math.BigDecimal data) {
+ super(38, data);
+ }
+
+ public OrderQty(double data) {
+ super(38, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderQty2.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderQty2.java
new file mode 100644
index 000000000..d162eb2b7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrderQty2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderQty2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 192;
+
+ public OrderQty2() {
+ super(192);
+ }
+
+ public OrderQty2(java.math.BigDecimal data) {
+ super(192, data);
+ }
+
+ public OrderQty2(double data) {
+ super(192, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigClOrdID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigClOrdID.java
new file mode 100644
index 000000000..77180d1e4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigClOrdID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrigClOrdID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 41;
+
+ public OrigClOrdID() {
+ super(41);
+ }
+
+ public OrigClOrdID(String data) {
+ super(41, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigSendingTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigSendingTime.java
new file mode 100644
index 000000000..bb43dd1ab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigSendingTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class OrigSendingTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 122;
+
+ public OrigSendingTime() {
+ super(122);
+ }
+
+ public OrigSendingTime(LocalDateTime data) {
+ super(122, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigTime.java
new file mode 100644
index 000000000..96ed984ce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OrigTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class OrigTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 42;
+
+ public OrigTime() {
+ super(42);
+ }
+
+ public OrigTime(LocalDateTime data) {
+ super(42, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OutMainCntryUIndex.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OutMainCntryUIndex.java
new file mode 100644
index 000000000..e3368cd1d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OutMainCntryUIndex.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OutMainCntryUIndex extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 412;
+
+ public OutMainCntryUIndex() {
+ super(412);
+ }
+
+ public OutMainCntryUIndex(java.math.BigDecimal data) {
+ super(412, data);
+ }
+
+ public OutMainCntryUIndex(double data) {
+ super(412, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OutsideIndexPct.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OutsideIndexPct.java
new file mode 100644
index 000000000..40863e35c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/OutsideIndexPct.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class OutsideIndexPct extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 407;
+
+ public OutsideIndexPct() {
+ super(407);
+ }
+
+ public OutsideIndexPct(double data) {
+ super(407, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PegDifference.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PegDifference.java
new file mode 100644
index 000000000..6ccf77ad9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PegDifference.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PegDifference extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 211;
+
+ public PegDifference() {
+ super(211);
+ }
+
+ public PegDifference(java.math.BigDecimal data) {
+ super(211, data);
+ }
+
+ public PegDifference(double data) {
+ super(211, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PossDupFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PossDupFlag.java
new file mode 100644
index 000000000..1401f7e50
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PossDupFlag.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PossDupFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 43;
+ public static final boolean POSSIBLE_DUPLICATE = true;
+ public static final boolean ORIGINAL_TRANSMISSION = false;
+
+ public PossDupFlag() {
+ super(43);
+ }
+
+ public PossDupFlag(boolean data) {
+ super(43, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PossResend.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PossResend.java
new file mode 100644
index 000000000..37ee14ad7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PossResend.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PossResend extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 97;
+
+ public PossResend() {
+ super(97);
+ }
+
+ public PossResend(boolean data) {
+ super(97, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PrevClosePx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PrevClosePx.java
new file mode 100644
index 000000000..3050300bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PrevClosePx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PrevClosePx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 140;
+
+ public PrevClosePx() {
+ super(140);
+ }
+
+ public PrevClosePx(java.math.BigDecimal data) {
+ super(140, data);
+ }
+
+ public PrevClosePx(double data) {
+ super(140, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Price.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Price.java
new file mode 100644
index 000000000..28dbbd368
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Price.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Price extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 44;
+
+ public Price() {
+ super(44);
+ }
+
+ public Price(java.math.BigDecimal data) {
+ super(44, data);
+ }
+
+ public Price(double data) {
+ super(44, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PriceType.java
new file mode 100644
index 000000000..58b6e39e1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PriceType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 423;
+
+ public PriceType() {
+ super(423);
+ }
+
+ public PriceType(int data) {
+ super(423, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProcessCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProcessCode.java
new file mode 100644
index 000000000..83149659c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProcessCode.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ProcessCode extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 81;
+ public static final char REGULAR = '0';
+ public static final char SOFT_DOLLAR = '1';
+ public static final char STEPIN = '2';
+ public static final char STEPOUT = '3';
+ public static final char SOFTDOLLAR_STEPIN = '4';
+ public static final char SOFTDOLLAR_STEPOUT = '5';
+ public static final char PLAN_SPONSOR = '6';
+
+ public ProcessCode() {
+ super(81);
+ }
+
+ public ProcessCode(char data) {
+ super(81, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProgPeriodInterval.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProgPeriodInterval.java
new file mode 100644
index 000000000..fe794448e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProgPeriodInterval.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ProgPeriodInterval extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 415;
+
+ public ProgPeriodInterval() {
+ super(415);
+ }
+
+ public ProgPeriodInterval(int data) {
+ super(415, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProgRptReqs.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProgRptReqs.java
new file mode 100644
index 000000000..ef6a2a9dd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ProgRptReqs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ProgRptReqs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 414;
+
+ public ProgRptReqs() {
+ super(414);
+ }
+
+ public ProgRptReqs(int data) {
+ super(414, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PutOrCall.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PutOrCall.java
new file mode 100644
index 000000000..02c0d053b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/PutOrCall.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PutOrCall extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 201;
+ public static final int PUT = 0;
+ public static final int CALL = 1;
+
+ public PutOrCall() {
+ super(201);
+ }
+
+ public PutOrCall(int data) {
+ super(201, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteAckStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteAckStatus.java
new file mode 100644
index 000000000..e817d8e75
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteAckStatus.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteAckStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 297;
+
+ public QuoteAckStatus() {
+ super(297);
+ }
+
+ public QuoteAckStatus(int data) {
+ super(297, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteCancelType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteCancelType.java
new file mode 100644
index 000000000..12bd432c6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteCancelType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteCancelType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 298;
+
+ public QuoteCancelType() {
+ super(298);
+ }
+
+ public QuoteCancelType(int data) {
+ super(298, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteCondition.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteCondition.java
new file mode 100644
index 000000000..72edf4fdf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteCondition.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteCondition extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 276;
+ public static final String OPEN_ACTIVE = "A";
+ public static final String CLOSED_INACTIVE = "B";
+ public static final String EXCHANGE_BEST = "C";
+ public static final String CONSOLIDATED_BEST = "D";
+ public static final String LOCKED = "E";
+ public static final String CROSSED = "F";
+ public static final String DEPTH = "G";
+ public static final String FAST_TRADING = "H";
+ public static final String NONFIRM = "I";
+
+ public QuoteCondition() {
+ super(276);
+ }
+
+ public QuoteCondition(String data) {
+ super(276, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteEntryID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteEntryID.java
new file mode 100644
index 000000000..f1dc5f2df
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteEntryID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteEntryID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 299;
+
+ public QuoteEntryID() {
+ super(299);
+ }
+
+ public QuoteEntryID(String data) {
+ super(299, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteEntryRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteEntryRejectReason.java
new file mode 100644
index 000000000..247a3b172
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteEntryRejectReason.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteEntryRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 368;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE = 2;
+ public static final int QUOTE_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int UNKNOWN_QUOTE = 5;
+ public static final int DUPLICATE_QUOTE = 6;
+ public static final int INVALID_BIDASK_SPREAD = 7;
+ public static final int INVALID_PRICE = 8;
+ public static final int NOT_AUTHORIZED_TO_QUOTE_SECURITY = 9;
+
+ public QuoteEntryRejectReason() {
+ super(368);
+ }
+
+ public QuoteEntryRejectReason(int data) {
+ super(368, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteID.java
new file mode 100644
index 000000000..0ca992cbb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 117;
+
+ public QuoteID() {
+ super(117);
+ }
+
+ public QuoteID(String data) {
+ super(117, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteRejectReason.java
new file mode 100644
index 000000000..c72afed0c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteRejectReason.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 300;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE = 2;
+ public static final int QUOTE_REQUEST_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int UNKNOWN_QUOTE = 5;
+ public static final int DUPLICATE_QUOTE_7 = 6;
+ public static final int INVALID_PRICE = 8;
+ public static final int NOT_AUTHORIZED_TO_QUOTE_SECURITY = 9;
+
+ public QuoteRejectReason() {
+ super(300);
+ }
+
+ public QuoteRejectReason(int data) {
+ super(300, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteReqID.java
new file mode 100644
index 000000000..4dba2b503
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 131;
+
+ public QuoteReqID() {
+ super(131);
+ }
+
+ public QuoteReqID(String data) {
+ super(131, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteRequestType.java
new file mode 100644
index 000000000..27ce3129c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteRequestType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 303;
+
+ public QuoteRequestType() {
+ super(303);
+ }
+
+ public QuoteRequestType(int data) {
+ super(303, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteResponseLevel.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteResponseLevel.java
new file mode 100644
index 000000000..3a016e7c6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteResponseLevel.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteResponseLevel extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 301;
+
+ public QuoteResponseLevel() {
+ super(301);
+ }
+
+ public QuoteResponseLevel(int data) {
+ super(301, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteSetID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteSetID.java
new file mode 100644
index 000000000..6e95afca6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteSetID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteSetID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 302;
+
+ public QuoteSetID() {
+ super(302);
+ }
+
+ public QuoteSetID(String data) {
+ super(302, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteSetValidUntilTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteSetValidUntilTime.java
new file mode 100644
index 000000000..fa80d7f0b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/QuoteSetValidUntilTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class QuoteSetValidUntilTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 367;
+
+ public QuoteSetValidUntilTime() {
+ super(367);
+ }
+
+ public QuoteSetValidUntilTime(LocalDateTime data) {
+ super(367, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RatioQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RatioQty.java
new file mode 100644
index 000000000..457c88bc2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RatioQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class RatioQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 319;
+
+ public RatioQty() {
+ super(319);
+ }
+
+ public RatioQty(java.math.BigDecimal data) {
+ super(319, data);
+ }
+
+ public RatioQty(double data) {
+ super(319, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RawData.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RawData.java
new file mode 100644
index 000000000..121706799
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RawData.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RawData extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 96;
+
+ public RawData() {
+ super(96);
+ }
+
+ public RawData(String data) {
+ super(96, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RawDataLength.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RawDataLength.java
new file mode 100644
index 000000000..75ce4b519
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RawDataLength.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RawDataLength extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 95;
+
+ public RawDataLength() {
+ super(95);
+ }
+
+ public RawDataLength(int data) {
+ super(95, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefAllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefAllocID.java
new file mode 100644
index 000000000..9505fc730
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefAllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RefAllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 72;
+
+ public RefAllocID() {
+ super(72);
+ }
+
+ public RefAllocID(String data) {
+ super(72, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefMsgType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefMsgType.java
new file mode 100644
index 000000000..410956a0b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefMsgType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RefMsgType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 372;
+
+ public RefMsgType() {
+ super(372);
+ }
+
+ public RefMsgType(String data) {
+ super(372, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefSeqNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefSeqNum.java
new file mode 100644
index 000000000..265efc023
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefSeqNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RefSeqNum extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 45;
+
+ public RefSeqNum() {
+ super(45);
+ }
+
+ public RefSeqNum(int data) {
+ super(45, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefTagID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefTagID.java
new file mode 100644
index 000000000..3380a7eb0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RefTagID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RefTagID extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 371;
+
+ public RefTagID() {
+ super(371);
+ }
+
+ public RefTagID(int data) {
+ super(371, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RelatdSym.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RelatdSym.java
new file mode 100644
index 000000000..8fa2d3ded
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RelatdSym.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RelatdSym extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 46;
+
+ public RelatdSym() {
+ super(46);
+ }
+
+ public RelatdSym(String data) {
+ super(46, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ReportToExch.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ReportToExch.java
new file mode 100644
index 000000000..74286ece4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ReportToExch.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ReportToExch extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 113;
+ public static final boolean YES = true;
+ public static final boolean NO = false;
+
+ public ReportToExch() {
+ super(113);
+ }
+
+ public ReportToExch(boolean data) {
+ super(113, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ResetSeqNumFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ResetSeqNumFlag.java
new file mode 100644
index 000000000..b15b9fe31
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ResetSeqNumFlag.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ResetSeqNumFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 141;
+ public static final boolean YES_RESET_SEQUENCE_NUMBERS = true;
+ public static final boolean NO = false;
+
+ public ResetSeqNumFlag() {
+ super(141);
+ }
+
+ public ResetSeqNumFlag(boolean data) {
+ super(141, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RoutingID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RoutingID.java
new file mode 100644
index 000000000..a9b1787ed
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RoutingID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RoutingID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 217;
+
+ public RoutingID() {
+ super(217);
+ }
+
+ public RoutingID(String data) {
+ super(217, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RoutingType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RoutingType.java
new file mode 100644
index 000000000..28cf43e42
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RoutingType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RoutingType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 216;
+ public static final int TARGET_FIRM = 1;
+ public static final int TARGET_LIST = 2;
+ public static final int BLOCK_FIRM = 3;
+ public static final int BLOCK_LIST = 4;
+
+ public RoutingType() {
+ super(216);
+ }
+
+ public RoutingType(int data) {
+ super(216, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RptSeq.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RptSeq.java
new file mode 100644
index 000000000..fcb0f13de
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/RptSeq.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RptSeq extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 83;
+
+ public RptSeq() {
+ super(83);
+ }
+
+ public RptSeq(int data) {
+ super(83, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Rule80A.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Rule80A.java
new file mode 100644
index 000000000..6ff02e271
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Rule80A.java
@@ -0,0 +1,61 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Rule80A extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 47;
+ public static final char AGENCY_SINGLE_ORDER = 'A';
+ public static final char SHORT_EXEMPT_TRANSACTION_B = 'B';
+ public static final char PROGRAM_ORDER_NONINDEX_ARB_FOR_MEMBER_FIRMORG = 'C';
+ public static final char PROGRAM_ORDER_INDEX_ARB_FOR_MEMBER_FIRMORG = 'D';
+ public static final char REGISTERED_EQUITY_MARKET_MAKER_TRADES = 'E';
+ public static final char SHORT_EXEMPT_TRANSACTION_F = 'F';
+ public static final char SHORT_EXEMPT_TRANSACTION_H = 'H';
+ public static final char INDIVIDUAL_INVESTOR = 'I';
+ public static final char PROGRAM_ORDER_INDEX_ARB_FOR_INDIVIDUAL_CUSTOMER = 'J';
+ public static final char PROGRAM_ORDER_NONINDEX_ARB_FOR_INDIVIDUAL_CUSTOMER = 'K';
+ public static final char SHORT_EXEMPT_AFFILIATED = 'L';
+ public static final char PROGRAM_ORDER_INDEX_ARB_FOR_OTHER_MEMBER = 'M';
+ public static final char PROGRAM_ORDER_NONINDEX_ARB_FOR_OTHER_MEMBER = 'N';
+ public static final char COMPETING_DEALER_TRADES_O = 'O';
+ public static final char PRINCIPAL = 'P';
+ public static final char COMPETING_DEALER_TRADES_R = 'R';
+ public static final char SPECIALIST_TRADES = 'S';
+ public static final char COMPETING_DEALER_TRADES_T = 'T';
+ public static final char PROGRAM_ORDER_INDEX_ARB_FOR_OTHER_AGENCY = 'U';
+ public static final char ALL_OTHER_ORDERS_AS_AGENT_FOR_OTHER_MEMBER = 'W';
+ public static final char SHORT_EXEMPT_NOT_AFFILIATED = 'X';
+ public static final char PROGRAM_ORDER_NONINDEX_ARB_FOR_OTHER_AGENCY = 'Y';
+ public static final char SHORT_EXEMPT_NONMEMBER = 'Z';
+
+ public Rule80A() {
+ super(47);
+ }
+
+ public Rule80A(char data) {
+ super(47, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecondaryOrderID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecondaryOrderID.java
new file mode 100644
index 000000000..b32b2e890
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecondaryOrderID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryOrderID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 198;
+
+ public SecondaryOrderID() {
+ super(198);
+ }
+
+ public SecondaryOrderID(String data) {
+ super(198, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecureData.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecureData.java
new file mode 100644
index 000000000..d506b98bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecureData.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecureData extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 91;
+
+ public SecureData() {
+ super(91);
+ }
+
+ public SecureData(String data) {
+ super(91, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecureDataLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecureDataLen.java
new file mode 100644
index 000000000..0b93e7604
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecureDataLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecureDataLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 90;
+
+ public SecureDataLen() {
+ super(90);
+ }
+
+ public SecureDataLen(int data) {
+ super(90, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityDesc.java
new file mode 100644
index 000000000..fd6619cab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 107;
+
+ public SecurityDesc() {
+ super(107);
+ }
+
+ public SecurityDesc(String data) {
+ super(107, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityExchange.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityExchange.java
new file mode 100644
index 000000000..18cd922b6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityExchange.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityExchange extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 207;
+
+ public SecurityExchange() {
+ super(207);
+ }
+
+ public SecurityExchange(String data) {
+ super(207, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityID.java
new file mode 100644
index 000000000..db313dad4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 48;
+
+ public SecurityID() {
+ super(48);
+ }
+
+ public SecurityID(String data) {
+ super(48, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityReqID.java
new file mode 100644
index 000000000..d40d0ca45
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 320;
+
+ public SecurityReqID() {
+ super(320);
+ }
+
+ public SecurityReqID(String data) {
+ super(320, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityRequestType.java
new file mode 100644
index 000000000..6a8723219
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityRequestType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 321;
+ public static final int REQUEST_SECURITY_IDENTITY_AND_SPECIFICATIONS = 0;
+ public static final int REQUEST_SECURITY_IDENTITY_FOR_THE_SPECIFICATIONS_PROVIDED = 1;
+ public static final int REQUEST_LIST_SECURITY_TYPES = 2;
+ public static final int REQUEST_LIST_SECURITIES = 3;
+
+ public SecurityRequestType() {
+ super(321);
+ }
+
+ public SecurityRequestType(int data) {
+ super(321, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityResponseID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityResponseID.java
new file mode 100644
index 000000000..678b881ba
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityResponseID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityResponseID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 322;
+
+ public SecurityResponseID() {
+ super(322);
+ }
+
+ public SecurityResponseID(String data) {
+ super(322, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityResponseType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityResponseType.java
new file mode 100644
index 000000000..e1e247c78
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityResponseType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityResponseType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 323;
+ public static final int ACCEPT_SECURITY_PROPOSAL_AS_IS = 1;
+ public static final int ACCEPT_SECURITY_PROPOSAL_WITH_REVISIONS_AS_INDICATED_IN_THE_MESSAGE = 2;
+ public static final int LIST_OF_SECURITY_TYPES_RETURNED_PER_REQUEST = 3;
+ public static final int LIST_OF_SECURITIES_RETURNED_PER_REQUEST = 4;
+ public static final int REJECT_SECURITY_PROPOSAL = 5;
+ public static final int CAN_NOT_MATCH_SELECTION_CRITERIA = 6;
+
+ public SecurityResponseType() {
+ super(323);
+ }
+
+ public SecurityResponseType(int data) {
+ super(323, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentAcctName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentAcctName.java
new file mode 100644
index 000000000..81c0eb667
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentAcctName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySettlAgentAcctName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 179;
+
+ public SecuritySettlAgentAcctName() {
+ super(179);
+ }
+
+ public SecuritySettlAgentAcctName(String data) {
+ super(179, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentAcctNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentAcctNum.java
new file mode 100644
index 000000000..41cc72032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentAcctNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySettlAgentAcctNum extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 178;
+
+ public SecuritySettlAgentAcctNum() {
+ super(178);
+ }
+
+ public SecuritySettlAgentAcctNum(String data) {
+ super(178, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentCode.java
new file mode 100644
index 000000000..9a492198c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySettlAgentCode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 177;
+
+ public SecuritySettlAgentCode() {
+ super(177);
+ }
+
+ public SecuritySettlAgentCode(String data) {
+ super(177, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentContactName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentContactName.java
new file mode 100644
index 000000000..0376bfdbb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentContactName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySettlAgentContactName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 180;
+
+ public SecuritySettlAgentContactName() {
+ super(180);
+ }
+
+ public SecuritySettlAgentContactName(String data) {
+ super(180, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentContactPhone.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentContactPhone.java
new file mode 100644
index 000000000..1e76271cf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentContactPhone.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySettlAgentContactPhone extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 181;
+
+ public SecuritySettlAgentContactPhone() {
+ super(181);
+ }
+
+ public SecuritySettlAgentContactPhone(String data) {
+ super(181, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentName.java
new file mode 100644
index 000000000..8cffc857e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecuritySettlAgentName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySettlAgentName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 176;
+
+ public SecuritySettlAgentName() {
+ super(176);
+ }
+
+ public SecuritySettlAgentName(String data) {
+ super(176, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityStatusReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityStatusReqID.java
new file mode 100644
index 000000000..71a43f127
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityStatusReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityStatusReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 324;
+
+ public SecurityStatusReqID() {
+ super(324);
+ }
+
+ public SecurityStatusReqID(String data) {
+ super(324, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityTradingStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityTradingStatus.java
new file mode 100644
index 000000000..eb9da9d9c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityTradingStatus.java
@@ -0,0 +1,58 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityTradingStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 326;
+ public static final int OPENING_DELAY = 1;
+ public static final int TRADING_HALT = 2;
+ public static final int RESUME = 3;
+ public static final int NO_OPENNO_RESUME = 4;
+ public static final int PRICE_INDICATION = 5;
+ public static final int TRADING_RANGE_INDICATION = 6;
+ public static final int MARKET_IMBALANCE_BUY = 7;
+ public static final int MARKET_IMBALANCE_SELL = 8;
+ public static final int MARKET_ON_CLOSE_IMBALANCE_BUY = 9;
+ public static final int MARKET_ON_CLOSE_IMBALANCE_SELL = 10;
+ public static final int NOT_ASSIGNED = 11;
+ public static final int NO_MARKET_IMBALANCE = 12;
+ public static final int NO_MARKET_ON_CLOSE_IMBALANCE = 13;
+ public static final int ITS_PREOPENING = 14;
+ public static final int NEW_PRICE_INDICATION = 15;
+ public static final int TRADE_DISSEMINATION_TIME = 16;
+ public static final int READY_TO_TRADE = 17;
+ public static final int NOT_AVAILABLE_FOR_TRADING = 18;
+ public static final int NOT_TRADED_ON_THIS_MARKET = 19;
+ public static final int UNKNOWN_OR_INVALID = 20;
+
+ public SecurityTradingStatus() {
+ super(326);
+ }
+
+ public SecurityTradingStatus(int data) {
+ super(326, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityType.java
new file mode 100644
index 000000000..1f0b27aa5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SecurityType.java
@@ -0,0 +1,69 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 167;
+ public static final String BANKERS_ACCEPTANCE = "BA";
+ public static final String CONVERTIBLE_BOND = "CB";
+ public static final String CERTIFICATE_OF_DEPOSIT = "CD";
+ public static final String COLLATERALIZE_MORTGAGE_OBLIGATION = "CMO";
+ public static final String CORPORATE_BOND = "CORP";
+ public static final String COMMERCIAL_PAPER = "CP";
+ public static final String CORPORATE_PRIVATE_PLACEMENT = "CPP";
+ public static final String COMMON_STOCK = "CS";
+ public static final String FEDERAL_HOUSING_AUTHORITY = "FHA";
+ public static final String FEDERAL_HOME_LOAN = "FHL";
+ public static final String FEDERAL_NATIONAL_MORTGAGE_ASSOCIATION = "FN";
+ public static final String FOREIGN_EXCHANGE_CONTRACT = "FOR";
+ public static final String FUTURE = "FUT";
+ public static final String GOVERNMENT_NATIONAL_MORTGAGE_ASSOCIATION = "GN";
+ public static final String TREASURIES_PLUS_AGENCY_DEBENTURE = "GOVT";
+ public static final String MUTUAL_FUND = "MF";
+ public static final String MORTGAGE_INTEREST_ONLY = "MIO";
+ public static final String MORTGAGE_PRINCIPAL_ONLY = "MPO";
+ public static final String MORTGAGE_PRIVATE_PLACEMENT = "MPP";
+ public static final String MISCELLANEOUS_PASSTHRU = "MPT";
+ public static final String MUNICIPAL_BOND = "MUNI";
+ public static final String NO_ISITC_SECURITY_TYPE = "NONE";
+ public static final String OPTION = "OPT";
+ public static final String PREFERRED_STOCK = "PS";
+ public static final String REPURCHASE_AGREEMENT = "RP";
+ public static final String REVERSE_REPURCHASE_AGREEMENT = "RVRP";
+ public static final String STUDENT_LOAN_MARKETING_ASSOCIATION = "SL";
+ public static final String TIME_DEPOSIT = "TD";
+ public static final String US_TREASURY_BILL = "USTB";
+ public static final String WARRANT = "WAR";
+ public static final String CATS_TIGERS = "ZOO";
+
+ public SecurityType() {
+ super(167);
+ }
+
+ public SecurityType(String data) {
+ super(167, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SellVolume.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SellVolume.java
new file mode 100644
index 000000000..3ea401fdd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SellVolume.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SellVolume extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 331;
+
+ public SellVolume() {
+ super(331);
+ }
+
+ public SellVolume(java.math.BigDecimal data) {
+ super(331, data);
+ }
+
+ public SellVolume(double data) {
+ super(331, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SellerDays.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SellerDays.java
new file mode 100644
index 000000000..fdedfef43
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SellerDays.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SellerDays extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 287;
+
+ public SellerDays() {
+ super(287);
+ }
+
+ public SellerDays(int data) {
+ super(287, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderCompID.java
new file mode 100644
index 000000000..edb4a297c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SenderCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 49;
+
+ public SenderCompID() {
+ super(49);
+ }
+
+ public SenderCompID(String data) {
+ super(49, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderLocationID.java
new file mode 100644
index 000000000..64fda886c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SenderLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 142;
+
+ public SenderLocationID() {
+ super(142);
+ }
+
+ public SenderLocationID(String data) {
+ super(142, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderSubID.java
new file mode 100644
index 000000000..bd19fc957
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SenderSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SenderSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 50;
+
+ public SenderSubID() {
+ super(50);
+ }
+
+ public SenderSubID(String data) {
+ super(50, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SendingTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SendingTime.java
new file mode 100644
index 000000000..ca985fddd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SendingTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class SendingTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 52;
+
+ public SendingTime() {
+ super(52);
+ }
+
+ public SendingTime(LocalDateTime data) {
+ super(52, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SessionRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SessionRejectReason.java
new file mode 100644
index 000000000..9ac699c69
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SessionRejectReason.java
@@ -0,0 +1,50 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SessionRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 373;
+ public static final int INVALID_TAG_NUMBER = 0;
+ public static final int REQUIRED_TAG_MISSING = 1;
+ public static final int TAG_NOT_DEFINED_FOR_THIS_MESSAGE_TYPE = 2;
+ public static final int UNDEFINED_TAG = 3;
+ public static final int TAG_SPECIFIED_WITHOUT_A_VALUE = 4;
+ public static final int VALUE_IS_INCORRECT = 5;
+ public static final int INCORRECT_DATA_FORMAT_FOR_VALUE = 6;
+ public static final int DECRYPTION_PROBLEM = 7;
+ public static final int SIGNATURE_PROBLEM = 8;
+ public static final int COMPID_PROBLEM = 9;
+ public static final int SENDINGTIME_ACCURACY_PROBLEM = 10;
+ public static final int E = 11;
+
+ public SessionRejectReason() {
+ super(373);
+ }
+
+ public SessionRejectReason(int data) {
+ super(373, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlBrkrCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlBrkrCode.java
new file mode 100644
index 000000000..eef9668ed
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlBrkrCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlBrkrCode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 174;
+
+ public SettlBrkrCode() {
+ super(174);
+ }
+
+ public SettlBrkrCode(String data) {
+ super(174, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrAmt.java
new file mode 100644
index 000000000..2fab2a859
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SettlCurrAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 119;
+
+ public SettlCurrAmt() {
+ super(119);
+ }
+
+ public SettlCurrAmt(java.math.BigDecimal data) {
+ super(119, data);
+ }
+
+ public SettlCurrAmt(double data) {
+ super(119, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrFxRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrFxRate.java
new file mode 100644
index 000000000..f8847b74c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrFxRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class SettlCurrFxRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 155;
+
+ public SettlCurrFxRate() {
+ super(155);
+ }
+
+ public SettlCurrFxRate(double data) {
+ super(155, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrFxRateCalc.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrFxRateCalc.java
new file mode 100644
index 000000000..8ba22aa3e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrFxRateCalc.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlCurrFxRateCalc extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 156;
+ public static final char MULTIPLY = 'M';
+ public static final char DIVIDE = 'D';
+
+ public SettlCurrFxRateCalc() {
+ super(156);
+ }
+
+ public SettlCurrFxRateCalc(char data) {
+ super(156, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrency.java
new file mode 100644
index 000000000..01f991ce8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 120;
+
+ public SettlCurrency() {
+ super(120);
+ }
+
+ public SettlCurrency(String data) {
+ super(120, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlDeliveryType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlDeliveryType.java
new file mode 100644
index 000000000..adcc112ab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlDeliveryType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SettlDeliveryType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 172;
+
+ public SettlDeliveryType() {
+ super(172);
+ }
+
+ public SettlDeliveryType(int data) {
+ super(172, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlDepositoryCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlDepositoryCode.java
new file mode 100644
index 000000000..1fa74e2ca
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlDepositoryCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlDepositoryCode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 173;
+
+ public SettlDepositoryCode() {
+ super(173);
+ }
+
+ public SettlDepositoryCode(String data) {
+ super(173, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstCode.java
new file mode 100644
index 000000000..42ae3582e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstCode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 175;
+
+ public SettlInstCode() {
+ super(175);
+ }
+
+ public SettlInstCode(String data) {
+ super(175, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstID.java
new file mode 100644
index 000000000..151cff407
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 162;
+
+ public SettlInstID() {
+ super(162);
+ }
+
+ public SettlInstID(String data) {
+ super(162, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstMode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstMode.java
new file mode 100644
index 000000000..b2ea75e00
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstMode.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlInstMode extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 160;
+ public static final char DEFAULT = '0';
+ public static final char STANDING_INSTRUCTIONS_PROVIDED = '1';
+ public static final char SPECIFIC_ALLOCATION_ACCOUNT_OVERRIDING = '2';
+ public static final char SPECIFIC_ALLOCATION_ACCOUNT_STANDING = '3';
+
+ public SettlInstMode() {
+ super(160);
+ }
+
+ public SettlInstMode(char data) {
+ super(160, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstRefID.java
new file mode 100644
index 000000000..cdfe132fa
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 214;
+
+ public SettlInstRefID() {
+ super(214);
+ }
+
+ public SettlInstRefID(String data) {
+ super(214, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstSource.java
new file mode 100644
index 000000000..be64d1faa
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstSource.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlInstSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 165;
+ public static final char BROKER = '1';
+ public static final char INSTITUTION = '2';
+
+ public SettlInstSource() {
+ super(165);
+ }
+
+ public SettlInstSource(char data) {
+ super(165, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstTransType.java
new file mode 100644
index 000000000..1c6289fa3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlInstTransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlInstTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 163;
+ public static final char NEW = 'N';
+ public static final char CANCEL = 'C';
+ public static final char REPLACE = 'R';
+
+ public SettlInstTransType() {
+ super(163);
+ }
+
+ public SettlInstTransType(char data) {
+ super(163, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlLocation.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlLocation.java
new file mode 100644
index 000000000..5bed1d659
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlLocation.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlLocation extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 166;
+ public static final String CEDEL = "CED";
+ public static final String DEPOSITORY_TRUST_COMPANY = "DTC";
+ public static final String EUROCLEAR = "EUR";
+ public static final String FEDERAL_BOOK_ENTRY = "FED";
+ public static final String PHYSICAL = "PNY";
+ public static final String PARTICIPANT_TRUST_COMPANY = "PTC";
+ public static final String LOCAL_MARKET_SETTLE_LOCATION = "ISO";
+
+ public SettlLocation() {
+ super(166);
+ }
+
+ public SettlLocation(String data) {
+ super(166, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlmntTyp.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlmntTyp.java
new file mode 100644
index 000000000..17ab7259a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SettlmntTyp.java
@@ -0,0 +1,48 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlmntTyp extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 63;
+ public static final char REGULAR = '0';
+ public static final char CASH = '1';
+ public static final char NEXT_DAY = '2';
+ public static final char TPLUS2 = '3';
+ public static final char TPLUS3 = '4';
+ public static final char TPLUS4 = '5';
+ public static final char FUTURE = '6';
+ public static final char WHEN_ISSUED = '7';
+ public static final char SELLERS_OPTION = '8';
+ public static final char TPLUS5 = '9';
+
+ public SettlmntTyp() {
+ super(63);
+ }
+
+ public SettlmntTyp(char data) {
+ super(63, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Shares.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Shares.java
new file mode 100644
index 000000000..26273857d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Shares.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Shares extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 53;
+
+ public Shares() {
+ super(53);
+ }
+
+ public Shares(java.math.BigDecimal data) {
+ super(53, data);
+ }
+
+ public Shares(double data) {
+ super(53, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Side.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Side.java
new file mode 100644
index 000000000..5eb8f8e17
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Side.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Side extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 54;
+ public static final char BUY = '1';
+ public static final char SELL = '2';
+ public static final char BUY_MINUS = '3';
+ public static final char SELL_PLUS = '4';
+ public static final char SELL_SHORT = '5';
+ public static final char SELL_SHORT_EXEMPT = '6';
+ public static final char D = '7';
+ public static final char CROSS = '8';
+ public static final char CROSS_SHORT = '9';
+
+ public Side() {
+ super(54);
+ }
+
+ public Side(char data) {
+ super(54, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValue1.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValue1.java
new file mode 100644
index 000000000..34aec5e63
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValue1.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SideValue1 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 396;
+
+ public SideValue1() {
+ super(396);
+ }
+
+ public SideValue1(java.math.BigDecimal data) {
+ super(396, data);
+ }
+
+ public SideValue1(double data) {
+ super(396, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValue2.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValue2.java
new file mode 100644
index 000000000..786c25ecc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValue2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SideValue2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 397;
+
+ public SideValue2() {
+ super(397);
+ }
+
+ public SideValue2(java.math.BigDecimal data) {
+ super(397, data);
+ }
+
+ public SideValue2(double data) {
+ super(397, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValueInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValueInd.java
new file mode 100644
index 000000000..fe8e90f1e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SideValueInd.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SideValueInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 401;
+
+ public SideValueInd() {
+ super(401);
+ }
+
+ public SideValueInd(int data) {
+ super(401, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Signature.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Signature.java
new file mode 100644
index 000000000..dbe63c808
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Signature.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Signature extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 89;
+
+ public Signature() {
+ super(89);
+ }
+
+ public Signature(String data) {
+ super(89, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SignatureLength.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SignatureLength.java
new file mode 100644
index 000000000..a6ee5c6c9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SignatureLength.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SignatureLength extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 93;
+
+ public SignatureLength() {
+ super(93);
+ }
+
+ public SignatureLength(int data) {
+ super(93, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SolicitedFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SolicitedFlag.java
new file mode 100644
index 000000000..e4018a7bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SolicitedFlag.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class SolicitedFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 377;
+ public static final boolean WAS_SOLCITIED = true;
+ public static final boolean WAS_NOT_SOLICITED = false;
+
+ public SolicitedFlag() {
+ super(377);
+ }
+
+ public SolicitedFlag(boolean data) {
+ super(377, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SpreadToBenchmark.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SpreadToBenchmark.java
new file mode 100644
index 000000000..43a78d8cb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SpreadToBenchmark.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SpreadToBenchmark extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 218;
+
+ public SpreadToBenchmark() {
+ super(218);
+ }
+
+ public SpreadToBenchmark(java.math.BigDecimal data) {
+ super(218, data);
+ }
+
+ public SpreadToBenchmark(double data) {
+ super(218, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbID.java
new file mode 100644
index 000000000..f88ff7391
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StandInstDbID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 171;
+
+ public StandInstDbID() {
+ super(171);
+ }
+
+ public StandInstDbID(String data) {
+ super(171, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbName.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbName.java
new file mode 100644
index 000000000..96028afb5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StandInstDbName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 170;
+
+ public StandInstDbName() {
+ super(170);
+ }
+
+ public StandInstDbName(String data) {
+ super(170, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbType.java
new file mode 100644
index 000000000..af308181b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StandInstDbType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class StandInstDbType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 169;
+ public static final int OTHER = 0;
+ public static final int DTC_SID = 1;
+ public static final int THOMSON_ALERT = 2;
+ public static final int A_GLOBAL_CUSTODIAN = 3;
+
+ public StandInstDbType() {
+ super(169);
+ }
+
+ public StandInstDbType(int data) {
+ super(169, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StopPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StopPx.java
new file mode 100644
index 000000000..e36bea5e3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StopPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class StopPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 99;
+
+ public StopPx() {
+ super(99);
+ }
+
+ public StopPx(java.math.BigDecimal data) {
+ super(99, data);
+ }
+
+ public StopPx(double data) {
+ super(99, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StrikePrice.java
new file mode 100644
index 000000000..daf8c301d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StrikePrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class StrikePrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 202;
+
+ public StrikePrice() {
+ super(202);
+ }
+
+ public StrikePrice(java.math.BigDecimal data) {
+ super(202, data);
+ }
+
+ public StrikePrice(double data) {
+ super(202, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StrikeTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StrikeTime.java
new file mode 100644
index 000000000..7b2fefd0f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/StrikeTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class StrikeTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 443;
+
+ public StrikeTime() {
+ super(443);
+ }
+
+ public StrikeTime(LocalDateTime data) {
+ super(443, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Subject.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Subject.java
new file mode 100644
index 000000000..88054479a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Subject.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Subject extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 147;
+
+ public Subject() {
+ super(147);
+ }
+
+ public Subject(String data) {
+ super(147, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SubscriptionRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SubscriptionRequestType.java
new file mode 100644
index 000000000..bd38adfa7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SubscriptionRequestType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SubscriptionRequestType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 263;
+ public static final char SNAPSHOT = '0';
+ public static final char SNAPSHOT_PLUS_UPDATES = '1';
+ public static final char DISABLE_PREVIOUS = '2';
+
+ public SubscriptionRequestType() {
+ super(263);
+ }
+
+ public SubscriptionRequestType(char data) {
+ super(263, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Symbol.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Symbol.java
new file mode 100644
index 000000000..ecdce19db
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Symbol.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Symbol extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 55;
+
+ public Symbol() {
+ super(55);
+ }
+
+ public Symbol(String data) {
+ super(55, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SymbolSfx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SymbolSfx.java
new file mode 100644
index 000000000..8edfd6a03
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/SymbolSfx.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SymbolSfx extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 65;
+
+ public SymbolSfx() {
+ super(65);
+ }
+
+ public SymbolSfx(String data) {
+ super(65, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetCompID.java
new file mode 100644
index 000000000..f40f4c9ec
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 56;
+
+ public TargetCompID() {
+ super(56);
+ }
+
+ public TargetCompID(String data) {
+ super(56, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetLocationID.java
new file mode 100644
index 000000000..1a6f2bebe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 143;
+
+ public TargetLocationID() {
+ super(143);
+ }
+
+ public TargetLocationID(String data) {
+ super(143, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetSubID.java
new file mode 100644
index 000000000..ebec9f335
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TargetSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 57;
+
+ public TargetSubID() {
+ super(57);
+ }
+
+ public TargetSubID(String data) {
+ super(57, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TestReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TestReqID.java
new file mode 100644
index 000000000..79d94ae17
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TestReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TestReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 112;
+
+ public TestReqID() {
+ super(112);
+ }
+
+ public TestReqID(String data) {
+ super(112, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Text.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Text.java
new file mode 100644
index 000000000..4c692f4ac
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Text.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Text extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 58;
+
+ public Text() {
+ super(58);
+ }
+
+ public Text(String data) {
+ super(58, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TickDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TickDirection.java
new file mode 100644
index 000000000..08f30a962
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TickDirection.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class TickDirection extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 274;
+ public static final char PLUS_TICK = '0';
+ public static final char ZEROPLUS_TICK = '1';
+ public static final char MINUS_TICK = '2';
+ public static final char ZEROMINUS_TICK = '3';
+
+ public TickDirection() {
+ super(274);
+ }
+
+ public TickDirection(char data) {
+ super(274, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TimeInForce.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TimeInForce.java
new file mode 100644
index 000000000..672b8105b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TimeInForce.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class TimeInForce extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 59;
+ public static final char DAY = '0';
+ public static final char GOOD_TILL_CANCEL = '1';
+ public static final char AT_THE_OPENING = '2';
+ public static final char IMMEDIATE_OR_CANCEL = '3';
+ public static final char FILL_OR_KILL = '4';
+ public static final char GOOD_TILL_CROSSING = '5';
+ public static final char GOOD_TILL_DATE = '6';
+
+ public TimeInForce() {
+ super(59);
+ }
+
+ public TimeInForce(char data) {
+ super(59, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotNoOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotNoOrders.java
new file mode 100644
index 000000000..f3765294c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotNoOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 68;
+
+ public TotNoOrders() {
+ super(68);
+ }
+
+ public TotNoOrders(int data) {
+ super(68, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotNoStrikes.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotNoStrikes.java
new file mode 100644
index 000000000..55cd24311
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotNoStrikes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoStrikes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 422;
+
+ public TotNoStrikes() {
+ super(422);
+ }
+
+ public TotNoStrikes(int data) {
+ super(422, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotQuoteEntries.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotQuoteEntries.java
new file mode 100644
index 000000000..343e96c46
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotQuoteEntries.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotQuoteEntries extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 304;
+
+ public TotQuoteEntries() {
+ super(304);
+ }
+
+ public TotQuoteEntries(int data) {
+ super(304, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotalNumSecurities.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotalNumSecurities.java
new file mode 100644
index 000000000..ee4e78a0f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotalNumSecurities.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotalNumSecurities extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 393;
+
+ public TotalNumSecurities() {
+ super(393);
+ }
+
+ public TotalNumSecurities(int data) {
+ super(393, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotalVolumeTraded.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotalVolumeTraded.java
new file mode 100644
index 000000000..f94696fca
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TotalVolumeTraded.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class TotalVolumeTraded extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 387;
+
+ public TotalVolumeTraded() {
+ super(387);
+ }
+
+ public TotalVolumeTraded(java.math.BigDecimal data) {
+ super(387, data);
+ }
+
+ public TotalVolumeTraded(double data) {
+ super(387, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesCloseTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesCloseTime.java
new file mode 100644
index 000000000..8fc6d7cd4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesCloseTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesCloseTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 344;
+
+ public TradSesCloseTime() {
+ super(344);
+ }
+
+ public TradSesCloseTime(LocalDateTime data) {
+ super(344, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesEndTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesEndTime.java
new file mode 100644
index 000000000..60e2eb3f2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesEndTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesEndTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 345;
+
+ public TradSesEndTime() {
+ super(345);
+ }
+
+ public TradSesEndTime(LocalDateTime data) {
+ super(345, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesMethod.java
new file mode 100644
index 000000000..8fa0223e8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesMethod.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesMethod extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 338;
+ public static final int ELECTRONIC = 1;
+ public static final int OPEN_OUTCRY = 2;
+ public static final int TWO_PARTY = 3;
+
+ public TradSesMethod() {
+ super(338);
+ }
+
+ public TradSesMethod(int data) {
+ super(338, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesMode.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesMode.java
new file mode 100644
index 000000000..597b6af93
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesMode.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesMode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 339;
+ public static final int TESTING = 1;
+ public static final int SIMULATED = 2;
+ public static final int PRODUCTION = 3;
+
+ public TradSesMode() {
+ super(339);
+ }
+
+ public TradSesMode(int data) {
+ super(339, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesOpenTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesOpenTime.java
new file mode 100644
index 000000000..f9ba431d1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesOpenTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesOpenTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 342;
+
+ public TradSesOpenTime() {
+ super(342);
+ }
+
+ public TradSesOpenTime(LocalDateTime data) {
+ super(342, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesPreCloseTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesPreCloseTime.java
new file mode 100644
index 000000000..976c9b2b1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesPreCloseTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesPreCloseTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 343;
+
+ public TradSesPreCloseTime() {
+ super(343);
+ }
+
+ public TradSesPreCloseTime(LocalDateTime data) {
+ super(343, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesReqID.java
new file mode 100644
index 000000000..6a73d007b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradSesReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 335;
+
+ public TradSesReqID() {
+ super(335);
+ }
+
+ public TradSesReqID(String data) {
+ super(335, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesStartTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesStartTime.java
new file mode 100644
index 000000000..646e84863
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesStartTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesStartTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 341;
+
+ public TradSesStartTime() {
+ super(341);
+ }
+
+ public TradSesStartTime(LocalDateTime data) {
+ super(341, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesStatus.java
new file mode 100644
index 000000000..b3ecd24b1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradSesStatus.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 340;
+ public static final int HALTED = 1;
+ public static final int OPEN = 2;
+ public static final int CLOSED = 3;
+ public static final int PREOPEN = 4;
+ public static final int PRECLOSE = 5;
+
+ public TradSesStatus() {
+ super(340);
+ }
+
+ public TradSesStatus(int data) {
+ super(340, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeCondition.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeCondition.java
new file mode 100644
index 000000000..7143d3c04
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeCondition.java
@@ -0,0 +1,52 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeCondition extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 277;
+ public static final String CASH = "A";
+ public static final String AVERAGE_PRICE_TRADE = "B";
+ public static final String CASH_TRADE = "C";
+ public static final String NEXT_DAY = "D";
+ public static final String OPENING_REOPENING_TRADE_DETAIL = "E";
+ public static final String INTRADAY_TRADE_DETAIL = "F";
+ public static final String RULE_127_TRADE = "G";
+ public static final String RULE_155_TRADE = "H";
+ public static final String SOLD_LAST = "I";
+ public static final String NEXT_DAY_TRADE = "J";
+ public static final String OPENED = "K";
+ public static final String SELLER = "L";
+ public static final String SOLD = "M";
+ public static final String STOPPED_STOCK = "N";
+
+ public TradeCondition() {
+ super(277);
+ }
+
+ public TradeCondition(String data) {
+ super(277, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeDate.java
new file mode 100644
index 000000000..3e4bc1b1a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 75;
+
+ public TradeDate() {
+ super(75);
+ }
+
+ public TradeDate(String data) {
+ super(75, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeType.java
new file mode 100644
index 000000000..86a8ba201
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradeType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class TradeType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 418;
+
+ public TradeType() {
+ super(418);
+ }
+
+ public TradeType(char data) {
+ super(418, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradingSessionID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradingSessionID.java
new file mode 100644
index 000000000..fe7ec23e1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TradingSessionID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradingSessionID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 336;
+
+ public TradingSessionID() {
+ super(336);
+ }
+
+ public TradingSessionID(String data) {
+ super(336, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TransactTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TransactTime.java
new file mode 100644
index 000000000..aa7f546d3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/TransactTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TransactTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 60;
+
+ public TransactTime() {
+ super(60);
+ }
+
+ public TransactTime(LocalDateTime data) {
+ super(60, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/URLLink.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/URLLink.java
new file mode 100644
index 000000000..1a67e37ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/URLLink.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class URLLink extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 149;
+
+ public URLLink() {
+ super(149);
+ }
+
+ public URLLink(String data) {
+ super(149, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingContractMultiplier.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingContractMultiplier.java
new file mode 100644
index 000000000..03a8f2383
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingContractMultiplier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class UnderlyingContractMultiplier extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 436;
+
+ public UnderlyingContractMultiplier() {
+ super(436);
+ }
+
+ public UnderlyingContractMultiplier(double data) {
+ super(436, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingCouponRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingCouponRate.java
new file mode 100644
index 000000000..710786ce4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingCouponRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class UnderlyingCouponRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 435;
+
+ public UnderlyingCouponRate() {
+ super(435);
+ }
+
+ public UnderlyingCouponRate(double data) {
+ super(435, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingCurrency.java
new file mode 100644
index 000000000..7a9220315
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 318;
+
+ public UnderlyingCurrency() {
+ super(318);
+ }
+
+ public UnderlyingCurrency(String data) {
+ super(318, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingIDSource.java
new file mode 100644
index 000000000..ee24c3084
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 305;
+
+ public UnderlyingIDSource() {
+ super(305);
+ }
+
+ public UnderlyingIDSource(String data) {
+ super(305, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingIssuer.java
new file mode 100644
index 000000000..2121f916c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 306;
+
+ public UnderlyingIssuer() {
+ super(306);
+ }
+
+ public UnderlyingIssuer(String data) {
+ super(306, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingMaturityDay.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingMaturityDay.java
new file mode 100644
index 000000000..aa2e94788
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingMaturityDay.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingMaturityDay extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 314;
+
+ public UnderlyingMaturityDay() {
+ super(314);
+ }
+
+ public UnderlyingMaturityDay(String data) {
+ super(314, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingMaturityMonthYear.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingMaturityMonthYear.java
new file mode 100644
index 000000000..fe88344bc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingMaturityMonthYear.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingMaturityMonthYear extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 313;
+
+ public UnderlyingMaturityMonthYear() {
+ super(313);
+ }
+
+ public UnderlyingMaturityMonthYear(String data) {
+ super(313, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingOptAttribute.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingOptAttribute.java
new file mode 100644
index 000000000..d0c3931dd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingOptAttribute.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class UnderlyingOptAttribute extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 317;
+
+ public UnderlyingOptAttribute() {
+ super(317);
+ }
+
+ public UnderlyingOptAttribute(char data) {
+ super(317, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingPutOrCall.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingPutOrCall.java
new file mode 100644
index 000000000..3456ada0a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingPutOrCall.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UnderlyingPutOrCall extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 315;
+
+ public UnderlyingPutOrCall() {
+ super(315);
+ }
+
+ public UnderlyingPutOrCall(int data) {
+ super(315, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityDesc.java
new file mode 100644
index 000000000..74c80373e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 307;
+
+ public UnderlyingSecurityDesc() {
+ super(307);
+ }
+
+ public UnderlyingSecurityDesc(String data) {
+ super(307, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityExchange.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityExchange.java
new file mode 100644
index 000000000..64d0d716a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityExchange.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityExchange extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 308;
+
+ public UnderlyingSecurityExchange() {
+ super(308);
+ }
+
+ public UnderlyingSecurityExchange(String data) {
+ super(308, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityID.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityID.java
new file mode 100644
index 000000000..23a60cc1d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 309;
+
+ public UnderlyingSecurityID() {
+ super(309);
+ }
+
+ public UnderlyingSecurityID(String data) {
+ super(309, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityType.java
new file mode 100644
index 000000000..0c2860edf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSecurityType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 310;
+
+ public UnderlyingSecurityType() {
+ super(310);
+ }
+
+ public UnderlyingSecurityType(String data) {
+ super(310, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingStrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingStrikePrice.java
new file mode 100644
index 000000000..b9e5b70b5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingStrikePrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingStrikePrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 316;
+
+ public UnderlyingStrikePrice() {
+ super(316);
+ }
+
+ public UnderlyingStrikePrice(java.math.BigDecimal data) {
+ super(316, data);
+ }
+
+ public UnderlyingStrikePrice(double data) {
+ super(316, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSymbol.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSymbol.java
new file mode 100644
index 000000000..9c5999949
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSymbol.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSymbol extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 311;
+
+ public UnderlyingSymbol() {
+ super(311);
+ }
+
+ public UnderlyingSymbol(String data) {
+ super(311, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSymbolSfx.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSymbolSfx.java
new file mode 100644
index 000000000..5c007fa20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnderlyingSymbolSfx.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSymbolSfx extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 312;
+
+ public UnderlyingSymbolSfx() {
+ super(312);
+ }
+
+ public UnderlyingSymbolSfx(String data) {
+ super(312, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnsolicitedIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnsolicitedIndicator.java
new file mode 100644
index 000000000..3e8d399da
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/UnsolicitedIndicator.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class UnsolicitedIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 325;
+ public static final boolean MESSAGE_IS_BEING_SENT_UNSOLICITED = true;
+ public static final boolean MESSAGE_IS_BEING_SENT_AS_A_RESULT_OF_A_PRIOR_REQUEST = false;
+
+ public UnsolicitedIndicator() {
+ super(325);
+ }
+
+ public UnsolicitedIndicator(boolean data) {
+ super(325, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Urgency.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Urgency.java
new file mode 100644
index 000000000..a1de39da8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/Urgency.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Urgency extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 61;
+ public static final char NORMAL = '0';
+ public static final char FLASH = '1';
+ public static final char BACKGROUND = '2';
+
+ public Urgency() {
+ super(61);
+ }
+
+ public Urgency(char data) {
+ super(61, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ValidUntilTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ValidUntilTime.java
new file mode 100644
index 000000000..2f7c8dcd2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ValidUntilTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ValidUntilTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 62;
+
+ public ValidUntilTime() {
+ super(62);
+ }
+
+ public ValidUntilTime(LocalDateTime data) {
+ super(62, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ValueOfFutures.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ValueOfFutures.java
new file mode 100644
index 000000000..f40f4b729
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/ValueOfFutures.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ValueOfFutures extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 408;
+
+ public ValueOfFutures() {
+ super(408);
+ }
+
+ public ValueOfFutures(java.math.BigDecimal data) {
+ super(408, data);
+ }
+
+ public ValueOfFutures(double data) {
+ super(408, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/WaveNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/WaveNo.java
new file mode 100644
index 000000000..e8ccfe3b0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/WaveNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class WaveNo extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 105;
+
+ public WaveNo() {
+ super(105);
+ }
+
+ public WaveNo(String data) {
+ super(105, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/WtAverageLiquidity.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/WtAverageLiquidity.java
new file mode 100644
index 000000000..954160d52
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/WtAverageLiquidity.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class WtAverageLiquidity extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 410;
+
+ public WtAverageLiquidity() {
+ super(410);
+ }
+
+ public WtAverageLiquidity(double data) {
+ super(410, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/XmlData.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/XmlData.java
new file mode 100644
index 000000000..711cbc237
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/XmlData.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class XmlData extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 213;
+
+ public XmlData() {
+ super(213);
+ }
+
+ public XmlData(String data) {
+ super(213, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/XmlDataLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/XmlDataLen.java
new file mode 100644
index 000000000..0f8eb3aa8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/XmlDataLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class XmlDataLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 212;
+
+ public XmlDataLen() {
+ super(212);
+ }
+
+ public XmlDataLen(int data) {
+ super(212, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/package.html b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/package.html
new file mode 100644
index 000000000..397dcb99c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/field/package.html
@@ -0,0 +1,4 @@
+
+
+FIX field definitions for FIX42
+
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Advertisement.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Advertisement.java
new file mode 100644
index 000000000..9c0f6c2c9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Advertisement.java
@@ -0,0 +1,743 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class Advertisement extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "7";
+
+
+ public Advertisement() {
+
+ super(new int[] {2, 5, 3, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 4, 53, 44, 15, 75, 60, 58, 354, 355, 149, 30, 336, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Advertisement(quickfix.field.AdvId advId, quickfix.field.AdvTransType advTransType, quickfix.field.Symbol symbol, quickfix.field.AdvSide advSide, quickfix.field.Shares shares) {
+ this();
+ setField(advId);
+ setField(advTransType);
+ setField(symbol);
+ setField(advSide);
+ setField(shares);
+ }
+
+ public void set(quickfix.field.AdvId value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvId get(quickfix.field.AdvId value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvId getAdvId() throws FieldNotFound {
+ return get(new quickfix.field.AdvId());
+ }
+
+ public boolean isSet(quickfix.field.AdvId field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvId() {
+ return isSetField(2);
+ }
+
+ public void set(quickfix.field.AdvTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvTransType get(quickfix.field.AdvTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvTransType getAdvTransType() throws FieldNotFound {
+ return get(new quickfix.field.AdvTransType());
+ }
+
+ public boolean isSet(quickfix.field.AdvTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvTransType() {
+ return isSetField(5);
+ }
+
+ public void set(quickfix.field.AdvRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvRefID get(quickfix.field.AdvRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvRefID getAdvRefID() throws FieldNotFound {
+ return get(new quickfix.field.AdvRefID());
+ }
+
+ public boolean isSet(quickfix.field.AdvRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvRefID() {
+ return isSetField(3);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.AdvSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvSide get(quickfix.field.AdvSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvSide getAdvSide() throws FieldNotFound {
+ return get(new quickfix.field.AdvSide());
+ }
+
+ public boolean isSet(quickfix.field.AdvSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvSide() {
+ return isSetField(4);
+ }
+
+ public void set(quickfix.field.Shares value) {
+ setField(value);
+ }
+
+ public quickfix.field.Shares get(quickfix.field.Shares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Shares getShares() throws FieldNotFound {
+ return get(new quickfix.field.Shares());
+ }
+
+ public boolean isSet(quickfix.field.Shares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShares() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.URLLink value) {
+ setField(value);
+ }
+
+ public quickfix.field.URLLink get(quickfix.field.URLLink value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.URLLink getURLLink() throws FieldNotFound {
+ return get(new quickfix.field.URLLink());
+ }
+
+ public boolean isSet(quickfix.field.URLLink field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetURLLink() {
+ return isSetField(149);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Allocation.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Allocation.java
new file mode 100644
index 000000000..310490b9c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Allocation.java
@@ -0,0 +1,1777 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Allocation extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "J";
+
+
+ public Allocation() {
+
+ super(new int[] {70, 71, 72, 196, 197, 73, 124, 54, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 53, 30, 336, 6, 15, 74, 75, 60, 63, 64, 381, 118, 77, 58, 354, 355, 157, 158, 78, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Allocation(quickfix.field.AllocID allocID, quickfix.field.AllocTransType allocTransType, quickfix.field.Side side, quickfix.field.Symbol symbol, quickfix.field.Shares shares, quickfix.field.AvgPx avgPx, quickfix.field.TradeDate tradeDate) {
+ this();
+ setField(allocID);
+ setField(allocTransType);
+ setField(side);
+ setField(symbol);
+ setField(shares);
+ setField(avgPx);
+ setField(tradeDate);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.AllocTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocTransType get(quickfix.field.AllocTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocTransType getAllocTransType() throws FieldNotFound {
+ return get(new quickfix.field.AllocTransType());
+ }
+
+ public boolean isSet(quickfix.field.AllocTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocTransType() {
+ return isSetField(71);
+ }
+
+ public void set(quickfix.field.RefAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefAllocID get(quickfix.field.RefAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefAllocID getRefAllocID() throws FieldNotFound {
+ return get(new quickfix.field.RefAllocID());
+ }
+
+ public boolean isSet(quickfix.field.RefAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefAllocID() {
+ return isSetField(72);
+ }
+
+ public void set(quickfix.field.AllocLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocLinkID get(quickfix.field.AllocLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocLinkID getAllocLinkID() throws FieldNotFound {
+ return get(new quickfix.field.AllocLinkID());
+ }
+
+ public boolean isSet(quickfix.field.AllocLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocLinkID() {
+ return isSetField(196);
+ }
+
+ public void set(quickfix.field.AllocLinkType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocLinkType get(quickfix.field.AllocLinkType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocLinkType getAllocLinkType() throws FieldNotFound {
+ return get(new quickfix.field.AllocLinkType());
+ }
+
+ public boolean isSet(quickfix.field.AllocLinkType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocLinkType() {
+ return isSetField(197);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 37, 198, 66, 105, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.WaveNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.WaveNo get(quickfix.field.WaveNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.WaveNo getWaveNo() throws FieldNotFound {
+ return get(new quickfix.field.WaveNo());
+ }
+
+ public boolean isSet(quickfix.field.WaveNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetWaveNo() {
+ return isSetField(105);
+ }
+
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {32, 17, 31, 29, 0};
+
+ public NoExecs() {
+ super(124, 32, ORDER);
+ }
+
+ public void set(quickfix.field.LastShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastShares get(quickfix.field.LastShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastShares getLastShares() throws FieldNotFound {
+ return get(new quickfix.field.LastShares());
+ }
+
+ public boolean isSet(quickfix.field.LastShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastShares() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.LastCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastCapacity get(quickfix.field.LastCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastCapacity getLastCapacity() throws FieldNotFound {
+ return get(new quickfix.field.LastCapacity());
+ }
+
+ public boolean isSet(quickfix.field.LastCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastCapacity() {
+ return isSetField(29);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Shares value) {
+ setField(value);
+ }
+
+ public quickfix.field.Shares get(quickfix.field.Shares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Shares getShares() throws FieldNotFound {
+ return get(new quickfix.field.Shares());
+ }
+
+ public boolean isSet(quickfix.field.Shares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShares() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.AvgPrxPrecision value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPrxPrecision get(quickfix.field.AvgPrxPrecision value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPrxPrecision getAvgPrxPrecision() throws FieldNotFound {
+ return get(new quickfix.field.AvgPrxPrecision());
+ }
+
+ public boolean isSet(quickfix.field.AvgPrxPrecision field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPrxPrecision() {
+ return isSetField(74);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.NetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetMoney get(quickfix.field.NetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetMoney getNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.NetMoney());
+ }
+
+ public boolean isSet(quickfix.field.NetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetMoney() {
+ return isSetField(118);
+ }
+
+ public void set(quickfix.field.OpenClose value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenClose get(quickfix.field.OpenClose value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenClose getOpenClose() throws FieldNotFound {
+ return get(new quickfix.field.OpenClose());
+ }
+
+ public boolean isSet(quickfix.field.OpenClose field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenClose() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NumDaysInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumDaysInterest get(quickfix.field.NumDaysInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumDaysInterest getNumDaysInterest() throws FieldNotFound {
+ return get(new quickfix.field.NumDaysInterest());
+ }
+
+ public boolean isSet(quickfix.field.NumDaysInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumDaysInterest() {
+ return isSetField(157);
+ }
+
+ public void set(quickfix.field.AccruedInterestRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestRate get(quickfix.field.AccruedInterestRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestRate getAccruedInterestRate() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestRate());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestRate() {
+ return isSetField(158);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 366, 80, 81, 92, 208, 209, 161, 360, 361, 76, 109, 12, 13, 153, 154, 119, 120, 155, 156, 159, 160, 136, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocPrice get(quickfix.field.AllocPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocPrice getAllocPrice() throws FieldNotFound {
+ return get(new quickfix.field.AllocPrice());
+ }
+
+ public boolean isSet(quickfix.field.AllocPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocPrice() {
+ return isSetField(366);
+ }
+
+ public void set(quickfix.field.AllocShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocShares get(quickfix.field.AllocShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocShares getAllocShares() throws FieldNotFound {
+ return get(new quickfix.field.AllocShares());
+ }
+
+ public boolean isSet(quickfix.field.AllocShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocShares() {
+ return isSetField(80);
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.BrokerOfCredit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BrokerOfCredit get(quickfix.field.BrokerOfCredit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BrokerOfCredit getBrokerOfCredit() throws FieldNotFound {
+ return get(new quickfix.field.BrokerOfCredit());
+ }
+
+ public boolean isSet(quickfix.field.BrokerOfCredit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBrokerOfCredit() {
+ return isSetField(92);
+ }
+
+ public void set(quickfix.field.NotifyBrokerOfCredit value) {
+ setField(value);
+ }
+
+ public quickfix.field.NotifyBrokerOfCredit get(quickfix.field.NotifyBrokerOfCredit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NotifyBrokerOfCredit getNotifyBrokerOfCredit() throws FieldNotFound {
+ return get(new quickfix.field.NotifyBrokerOfCredit());
+ }
+
+ public boolean isSet(quickfix.field.NotifyBrokerOfCredit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNotifyBrokerOfCredit() {
+ return isSetField(208);
+ }
+
+ public void set(quickfix.field.AllocHandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocHandlInst get(quickfix.field.AllocHandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocHandlInst getAllocHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.AllocHandlInst());
+ }
+
+ public boolean isSet(quickfix.field.AllocHandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocHandlInst() {
+ return isSetField(209);
+ }
+
+ public void set(quickfix.field.AllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocText get(quickfix.field.AllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocText getAllocText() throws FieldNotFound {
+ return get(new quickfix.field.AllocText());
+ }
+
+ public boolean isSet(quickfix.field.AllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocText() {
+ return isSetField(161);
+ }
+
+ public void set(quickfix.field.EncodedAllocTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocTextLen get(quickfix.field.EncodedAllocTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocTextLen getEncodedAllocTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocTextLen() {
+ return isSetField(360);
+ }
+
+ public void set(quickfix.field.EncodedAllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocText get(quickfix.field.EncodedAllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocText getEncodedAllocText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocText() {
+ return isSetField(361);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.AllocAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAvgPx get(quickfix.field.AllocAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAvgPx getAllocAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AllocAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AllocAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAvgPx() {
+ return isSetField(153);
+ }
+
+ public void set(quickfix.field.AllocNetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocNetMoney get(quickfix.field.AllocNetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocNetMoney getAllocNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.AllocNetMoney());
+ }
+
+ public boolean isSet(quickfix.field.AllocNetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocNetMoney() {
+ return isSetField(154);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.SettlInstMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMode get(quickfix.field.SettlInstMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMode getSettlInstMode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMode() {
+ return isSetField(160);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/AllocationACK.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/AllocationACK.java
new file mode 100644
index 000000000..5f058ae2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/AllocationACK.java
@@ -0,0 +1,237 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class AllocationACK extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "P";
+
+
+ public AllocationACK() {
+
+ super(new int[] {109, 76, 70, 75, 60, 87, 88, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public AllocationACK(quickfix.field.AllocID allocID, quickfix.field.TradeDate tradeDate, quickfix.field.AllocStatus allocStatus) {
+ this();
+ setField(allocID);
+ setField(tradeDate);
+ setField(allocStatus);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.AllocStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocStatus get(quickfix.field.AllocStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocStatus getAllocStatus() throws FieldNotFound {
+ return get(new quickfix.field.AllocStatus());
+ }
+
+ public boolean isSet(quickfix.field.AllocStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocStatus() {
+ return isSetField(87);
+ }
+
+ public void set(quickfix.field.AllocRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocRejCode get(quickfix.field.AllocRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocRejCode getAllocRejCode() throws FieldNotFound {
+ return get(new quickfix.field.AllocRejCode());
+ }
+
+ public boolean isSet(quickfix.field.AllocRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocRejCode() {
+ return isSetField(88);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BidRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BidRequest.java
new file mode 100644
index 000000000..6109b3d71
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BidRequest.java
@@ -0,0 +1,1040 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class BidRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "k";
+
+
+ public BidRequest() {
+
+ super(new int[] {390, 391, 374, 392, 393, 394, 395, 15, 396, 397, 398, 420, 409, 410, 411, 412, 413, 414, 415, 416, 121, 417, 75, 418, 419, 443, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public BidRequest(quickfix.field.ClientBidID clientBidID, quickfix.field.BidRequestTransType bidRequestTransType, quickfix.field.TotalNumSecurities totalNumSecurities, quickfix.field.BidType bidType, quickfix.field.TradeType tradeType, quickfix.field.BasisPxType basisPxType) {
+ this();
+ setField(clientBidID);
+ setField(bidRequestTransType);
+ setField(totalNumSecurities);
+ setField(bidType);
+ setField(tradeType);
+ setField(basisPxType);
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.BidRequestTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidRequestTransType get(quickfix.field.BidRequestTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidRequestTransType getBidRequestTransType() throws FieldNotFound {
+ return get(new quickfix.field.BidRequestTransType());
+ }
+
+ public boolean isSet(quickfix.field.BidRequestTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidRequestTransType() {
+ return isSetField(374);
+ }
+
+ public void set(quickfix.field.ListName value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListName get(quickfix.field.ListName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListName getListName() throws FieldNotFound {
+ return get(new quickfix.field.ListName());
+ }
+
+ public boolean isSet(quickfix.field.ListName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListName() {
+ return isSetField(392);
+ }
+
+ public void set(quickfix.field.TotalNumSecurities value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNumSecurities get(quickfix.field.TotalNumSecurities value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNumSecurities getTotalNumSecurities() throws FieldNotFound {
+ return get(new quickfix.field.TotalNumSecurities());
+ }
+
+ public boolean isSet(quickfix.field.TotalNumSecurities field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNumSecurities() {
+ return isSetField(393);
+ }
+
+ public void set(quickfix.field.BidType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidType get(quickfix.field.BidType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidType getBidType() throws FieldNotFound {
+ return get(new quickfix.field.BidType());
+ }
+
+ public boolean isSet(quickfix.field.BidType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidType() {
+ return isSetField(394);
+ }
+
+ public void set(quickfix.field.NumTickets value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumTickets get(quickfix.field.NumTickets value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumTickets getNumTickets() throws FieldNotFound {
+ return get(new quickfix.field.NumTickets());
+ }
+
+ public boolean isSet(quickfix.field.NumTickets field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumTickets() {
+ return isSetField(395);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.SideValue1 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValue1 get(quickfix.field.SideValue1 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValue1 getSideValue1() throws FieldNotFound {
+ return get(new quickfix.field.SideValue1());
+ }
+
+ public boolean isSet(quickfix.field.SideValue1 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValue1() {
+ return isSetField(396);
+ }
+
+ public void set(quickfix.field.SideValue2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValue2 get(quickfix.field.SideValue2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValue2 getSideValue2() throws FieldNotFound {
+ return get(new quickfix.field.SideValue2());
+ }
+
+ public boolean isSet(quickfix.field.SideValue2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValue2() {
+ return isSetField(397);
+ }
+
+ public void set(quickfix.field.NoBidDescriptors value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoBidDescriptors get(quickfix.field.NoBidDescriptors value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoBidDescriptors getNoBidDescriptors() throws FieldNotFound {
+ return get(new quickfix.field.NoBidDescriptors());
+ }
+
+ public boolean isSet(quickfix.field.NoBidDescriptors field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoBidDescriptors() {
+ return isSetField(398);
+ }
+
+ public static class NoBidDescriptors extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {399, 400, 401, 404, 441, 402, 403, 405, 406, 407, 408, 0};
+
+ public NoBidDescriptors() {
+ super(398, 399, ORDER);
+ }
+
+ public void set(quickfix.field.BidDescriptorType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidDescriptorType get(quickfix.field.BidDescriptorType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidDescriptorType getBidDescriptorType() throws FieldNotFound {
+ return get(new quickfix.field.BidDescriptorType());
+ }
+
+ public boolean isSet(quickfix.field.BidDescriptorType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidDescriptorType() {
+ return isSetField(399);
+ }
+
+ public void set(quickfix.field.BidDescriptor value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidDescriptor get(quickfix.field.BidDescriptor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidDescriptor getBidDescriptor() throws FieldNotFound {
+ return get(new quickfix.field.BidDescriptor());
+ }
+
+ public boolean isSet(quickfix.field.BidDescriptor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidDescriptor() {
+ return isSetField(400);
+ }
+
+ public void set(quickfix.field.SideValueInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValueInd get(quickfix.field.SideValueInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValueInd getSideValueInd() throws FieldNotFound {
+ return get(new quickfix.field.SideValueInd());
+ }
+
+ public boolean isSet(quickfix.field.SideValueInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValueInd() {
+ return isSetField(401);
+ }
+
+ public void set(quickfix.field.LiquidityValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityValue get(quickfix.field.LiquidityValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityValue getLiquidityValue() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityValue());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityValue() {
+ return isSetField(404);
+ }
+
+ public void set(quickfix.field.LiquidityNumSecurities value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityNumSecurities get(quickfix.field.LiquidityNumSecurities value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityNumSecurities getLiquidityNumSecurities() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityNumSecurities());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityNumSecurities field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityNumSecurities() {
+ return isSetField(441);
+ }
+
+ public void set(quickfix.field.LiquidityPctLow value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityPctLow get(quickfix.field.LiquidityPctLow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityPctLow getLiquidityPctLow() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityPctLow());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityPctLow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityPctLow() {
+ return isSetField(402);
+ }
+
+ public void set(quickfix.field.LiquidityPctHigh value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityPctHigh get(quickfix.field.LiquidityPctHigh value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityPctHigh getLiquidityPctHigh() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityPctHigh());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityPctHigh field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityPctHigh() {
+ return isSetField(403);
+ }
+
+ public void set(quickfix.field.EFPTrackingError value) {
+ setField(value);
+ }
+
+ public quickfix.field.EFPTrackingError get(quickfix.field.EFPTrackingError value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EFPTrackingError getEFPTrackingError() throws FieldNotFound {
+ return get(new quickfix.field.EFPTrackingError());
+ }
+
+ public boolean isSet(quickfix.field.EFPTrackingError field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEFPTrackingError() {
+ return isSetField(405);
+ }
+
+ public void set(quickfix.field.FairValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.FairValue get(quickfix.field.FairValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FairValue getFairValue() throws FieldNotFound {
+ return get(new quickfix.field.FairValue());
+ }
+
+ public boolean isSet(quickfix.field.FairValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFairValue() {
+ return isSetField(406);
+ }
+
+ public void set(quickfix.field.OutsideIndexPct value) {
+ setField(value);
+ }
+
+ public quickfix.field.OutsideIndexPct get(quickfix.field.OutsideIndexPct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OutsideIndexPct getOutsideIndexPct() throws FieldNotFound {
+ return get(new quickfix.field.OutsideIndexPct());
+ }
+
+ public boolean isSet(quickfix.field.OutsideIndexPct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOutsideIndexPct() {
+ return isSetField(407);
+ }
+
+ public void set(quickfix.field.ValueOfFutures value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValueOfFutures get(quickfix.field.ValueOfFutures value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValueOfFutures getValueOfFutures() throws FieldNotFound {
+ return get(new quickfix.field.ValueOfFutures());
+ }
+
+ public boolean isSet(quickfix.field.ValueOfFutures field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValueOfFutures() {
+ return isSetField(408);
+ }
+
+ }
+
+ public void set(quickfix.field.NoBidComponents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoBidComponents get(quickfix.field.NoBidComponents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoBidComponents getNoBidComponents() throws FieldNotFound {
+ return get(new quickfix.field.NoBidComponents());
+ }
+
+ public boolean isSet(quickfix.field.NoBidComponents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoBidComponents() {
+ return isSetField(420);
+ }
+
+ public static class NoBidComponents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {66, 54, 336, 430, 63, 64, 1, 0};
+
+ public NoBidComponents() {
+ super(420, 66, ORDER);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.NetGrossInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetGrossInd get(quickfix.field.NetGrossInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetGrossInd getNetGrossInd() throws FieldNotFound {
+ return get(new quickfix.field.NetGrossInd());
+ }
+
+ public boolean isSet(quickfix.field.NetGrossInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetGrossInd() {
+ return isSetField(430);
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ }
+
+ public void set(quickfix.field.LiquidityIndType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityIndType get(quickfix.field.LiquidityIndType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityIndType getLiquidityIndType() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityIndType());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityIndType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityIndType() {
+ return isSetField(409);
+ }
+
+ public void set(quickfix.field.WtAverageLiquidity value) {
+ setField(value);
+ }
+
+ public quickfix.field.WtAverageLiquidity get(quickfix.field.WtAverageLiquidity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.WtAverageLiquidity getWtAverageLiquidity() throws FieldNotFound {
+ return get(new quickfix.field.WtAverageLiquidity());
+ }
+
+ public boolean isSet(quickfix.field.WtAverageLiquidity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetWtAverageLiquidity() {
+ return isSetField(410);
+ }
+
+ public void set(quickfix.field.ExchangeForPhysical value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExchangeForPhysical get(quickfix.field.ExchangeForPhysical value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExchangeForPhysical getExchangeForPhysical() throws FieldNotFound {
+ return get(new quickfix.field.ExchangeForPhysical());
+ }
+
+ public boolean isSet(quickfix.field.ExchangeForPhysical field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExchangeForPhysical() {
+ return isSetField(411);
+ }
+
+ public void set(quickfix.field.OutMainCntryUIndex value) {
+ setField(value);
+ }
+
+ public quickfix.field.OutMainCntryUIndex get(quickfix.field.OutMainCntryUIndex value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OutMainCntryUIndex getOutMainCntryUIndex() throws FieldNotFound {
+ return get(new quickfix.field.OutMainCntryUIndex());
+ }
+
+ public boolean isSet(quickfix.field.OutMainCntryUIndex field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOutMainCntryUIndex() {
+ return isSetField(412);
+ }
+
+ public void set(quickfix.field.CrossPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossPercent get(quickfix.field.CrossPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossPercent getCrossPercent() throws FieldNotFound {
+ return get(new quickfix.field.CrossPercent());
+ }
+
+ public boolean isSet(quickfix.field.CrossPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossPercent() {
+ return isSetField(413);
+ }
+
+ public void set(quickfix.field.ProgRptReqs value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgRptReqs get(quickfix.field.ProgRptReqs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgRptReqs getProgRptReqs() throws FieldNotFound {
+ return get(new quickfix.field.ProgRptReqs());
+ }
+
+ public boolean isSet(quickfix.field.ProgRptReqs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgRptReqs() {
+ return isSetField(414);
+ }
+
+ public void set(quickfix.field.ProgPeriodInterval value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgPeriodInterval get(quickfix.field.ProgPeriodInterval value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgPeriodInterval getProgPeriodInterval() throws FieldNotFound {
+ return get(new quickfix.field.ProgPeriodInterval());
+ }
+
+ public boolean isSet(quickfix.field.ProgPeriodInterval field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgPeriodInterval() {
+ return isSetField(415);
+ }
+
+ public void set(quickfix.field.IncTaxInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.IncTaxInd get(quickfix.field.IncTaxInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IncTaxInd getIncTaxInd() throws FieldNotFound {
+ return get(new quickfix.field.IncTaxInd());
+ }
+
+ public boolean isSet(quickfix.field.IncTaxInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIncTaxInd() {
+ return isSetField(416);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.NumBidders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumBidders get(quickfix.field.NumBidders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumBidders getNumBidders() throws FieldNotFound {
+ return get(new quickfix.field.NumBidders());
+ }
+
+ public boolean isSet(quickfix.field.NumBidders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumBidders() {
+ return isSetField(417);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TradeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeType get(quickfix.field.TradeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeType getTradeType() throws FieldNotFound {
+ return get(new quickfix.field.TradeType());
+ }
+
+ public boolean isSet(quickfix.field.TradeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeType() {
+ return isSetField(418);
+ }
+
+ public void set(quickfix.field.BasisPxType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BasisPxType get(quickfix.field.BasisPxType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BasisPxType getBasisPxType() throws FieldNotFound {
+ return get(new quickfix.field.BasisPxType());
+ }
+
+ public boolean isSet(quickfix.field.BasisPxType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBasisPxType() {
+ return isSetField(419);
+ }
+
+ public void set(quickfix.field.StrikeTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeTime get(quickfix.field.StrikeTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeTime getStrikeTime() throws FieldNotFound {
+ return get(new quickfix.field.StrikeTime());
+ }
+
+ public boolean isSet(quickfix.field.StrikeTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeTime() {
+ return isSetField(443);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BidResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BidResponse.java
new file mode 100644
index 000000000..8c8eadc21
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BidResponse.java
@@ -0,0 +1,410 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class BidResponse extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "l";
+
+
+ public BidResponse() {
+
+ super(new int[] {390, 391, 420, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.NoBidComponents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoBidComponents get(quickfix.field.NoBidComponents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoBidComponents getNoBidComponents() throws FieldNotFound {
+ return get(new quickfix.field.NoBidComponents());
+ }
+
+ public boolean isSet(quickfix.field.NoBidComponents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoBidComponents() {
+ return isSetField(420);
+ }
+
+ public static class NoBidComponents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {12, 13, 66, 421, 54, 44, 423, 406, 430, 63, 64, 336, 58, 354, 355, 0};
+
+ public NoBidComponents() {
+ super(420, 12, ORDER);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Country value) {
+ setField(value);
+ }
+
+ public quickfix.field.Country get(quickfix.field.Country value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Country getCountry() throws FieldNotFound {
+ return get(new quickfix.field.Country());
+ }
+
+ public boolean isSet(quickfix.field.Country field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountry() {
+ return isSetField(421);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.FairValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.FairValue get(quickfix.field.FairValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FairValue getFairValue() throws FieldNotFound {
+ return get(new quickfix.field.FairValue());
+ }
+
+ public boolean isSet(quickfix.field.FairValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFairValue() {
+ return isSetField(406);
+ }
+
+ public void set(quickfix.field.NetGrossInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetGrossInd get(quickfix.field.NetGrossInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetGrossInd getNetGrossInd() throws FieldNotFound {
+ return get(new quickfix.field.NetGrossInd());
+ }
+
+ public boolean isSet(quickfix.field.NetGrossInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetGrossInd() {
+ return isSetField(430);
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BusinessMessageReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BusinessMessageReject.java
new file mode 100644
index 000000000..4fff7e1e9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/BusinessMessageReject.java
@@ -0,0 +1,173 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class BusinessMessageReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "j";
+
+
+ public BusinessMessageReject() {
+
+ super(new int[] {45, 372, 379, 380, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public BusinessMessageReject(quickfix.field.RefMsgType refMsgType, quickfix.field.BusinessRejectReason businessRejectReason) {
+ this();
+ setField(refMsgType);
+ setField(businessRejectReason);
+ }
+
+ public void set(quickfix.field.RefSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefSeqNum get(quickfix.field.RefSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefSeqNum getRefSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.RefSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.RefSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefSeqNum() {
+ return isSetField(45);
+ }
+
+ public void set(quickfix.field.RefMsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefMsgType get(quickfix.field.RefMsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefMsgType getRefMsgType() throws FieldNotFound {
+ return get(new quickfix.field.RefMsgType());
+ }
+
+ public boolean isSet(quickfix.field.RefMsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefMsgType() {
+ return isSetField(372);
+ }
+
+ public void set(quickfix.field.BusinessRejectRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BusinessRejectRefID get(quickfix.field.BusinessRejectRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BusinessRejectRefID getBusinessRejectRefID() throws FieldNotFound {
+ return get(new quickfix.field.BusinessRejectRefID());
+ }
+
+ public boolean isSet(quickfix.field.BusinessRejectRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBusinessRejectRefID() {
+ return isSetField(379);
+ }
+
+ public void set(quickfix.field.BusinessRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.BusinessRejectReason get(quickfix.field.BusinessRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BusinessRejectReason getBusinessRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.BusinessRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.BusinessRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBusinessRejectReason() {
+ return isSetField(380);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/DontKnowTrade.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/DontKnowTrade.java
new file mode 100644
index 000000000..f1cddddc1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/DontKnowTrade.java
@@ -0,0 +1,659 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class DontKnowTrade extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "Q";
+
+
+ public DontKnowTrade() {
+
+ super(new int[] {37, 17, 127, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 38, 152, 32, 31, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public DontKnowTrade(quickfix.field.OrderID orderID, quickfix.field.ExecID execID, quickfix.field.DKReason dKReason, quickfix.field.Symbol symbol, quickfix.field.Side side) {
+ this();
+ setField(orderID);
+ setField(execID);
+ setField(dKReason);
+ setField(symbol);
+ setField(side);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.DKReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.DKReason get(quickfix.field.DKReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DKReason getDKReason() throws FieldNotFound {
+ return get(new quickfix.field.DKReason());
+ }
+
+ public boolean isSet(quickfix.field.DKReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDKReason() {
+ return isSetField(127);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.LastShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastShares get(quickfix.field.LastShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastShares getLastShares() throws FieldNotFound {
+ return get(new quickfix.field.LastShares());
+ }
+
+ public boolean isSet(quickfix.field.LastShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastShares() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Email.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Email.java
new file mode 100644
index 000000000..bd2011c3e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Email.java
@@ -0,0 +1,838 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Email extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "C";
+
+
+ public Email() {
+
+ super(new int[] {164, 94, 42, 147, 356, 357, 215, 146, 37, 11, 33, 95, 96, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Email(quickfix.field.EmailThreadID emailThreadID, quickfix.field.EmailType emailType, quickfix.field.Subject subject) {
+ this();
+ setField(emailThreadID);
+ setField(emailType);
+ setField(subject);
+ }
+
+ public void set(quickfix.field.EmailThreadID value) {
+ setField(value);
+ }
+
+ public quickfix.field.EmailThreadID get(quickfix.field.EmailThreadID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EmailThreadID getEmailThreadID() throws FieldNotFound {
+ return get(new quickfix.field.EmailThreadID());
+ }
+
+ public boolean isSet(quickfix.field.EmailThreadID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEmailThreadID() {
+ return isSetField(164);
+ }
+
+ public void set(quickfix.field.EmailType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EmailType get(quickfix.field.EmailType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EmailType getEmailType() throws FieldNotFound {
+ return get(new quickfix.field.EmailType());
+ }
+
+ public boolean isSet(quickfix.field.EmailType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEmailType() {
+ return isSetField(94);
+ }
+
+ public void set(quickfix.field.OrigTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigTime get(quickfix.field.OrigTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigTime getOrigTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigTime() {
+ return isSetField(42);
+ }
+
+ public void set(quickfix.field.Subject value) {
+ setField(value);
+ }
+
+ public quickfix.field.Subject get(quickfix.field.Subject value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Subject getSubject() throws FieldNotFound {
+ return get(new quickfix.field.Subject());
+ }
+
+ public boolean isSet(quickfix.field.Subject field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubject() {
+ return isSetField(147);
+ }
+
+ public void set(quickfix.field.EncodedSubjectLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSubjectLen get(quickfix.field.EncodedSubjectLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSubjectLen getEncodedSubjectLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSubjectLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSubjectLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSubjectLen() {
+ return isSetField(356);
+ }
+
+ public void set(quickfix.field.EncodedSubject value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSubject get(quickfix.field.EncodedSubject value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSubject getEncodedSubject() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSubject());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSubject field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSubject() {
+ return isSetField(357);
+ }
+
+ public void set(quickfix.field.NoRoutingIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRoutingIDs get(quickfix.field.NoRoutingIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRoutingIDs getNoRoutingIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoRoutingIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoRoutingIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRoutingIDs() {
+ return isSetField(215);
+ }
+
+ public static class NoRoutingIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {216, 217, 0};
+
+ public NoRoutingIDs() {
+ super(215, 216, ORDER);
+ }
+
+ public void set(quickfix.field.RoutingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingType get(quickfix.field.RoutingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingType getRoutingType() throws FieldNotFound {
+ return get(new quickfix.field.RoutingType());
+ }
+
+ public boolean isSet(quickfix.field.RoutingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingType() {
+ return isSetField(216);
+ }
+
+ public void set(quickfix.field.RoutingID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingID get(quickfix.field.RoutingID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingID getRoutingID() throws FieldNotFound {
+ return get(new quickfix.field.RoutingID());
+ }
+
+ public boolean isSet(quickfix.field.RoutingID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingID() {
+ return isSetField(217);
+ }
+
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {46, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 0};
+
+ public NoRelatedSym() {
+ super(146, 46, ORDER);
+ }
+
+ public void set(quickfix.field.RelatdSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.RelatdSym get(quickfix.field.RelatdSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RelatdSym getRelatdSym() throws FieldNotFound {
+ return get(new quickfix.field.RelatdSym());
+ }
+
+ public boolean isSet(quickfix.field.RelatdSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRelatdSym() {
+ return isSetField(46);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.LinesOfText value) {
+ setField(value);
+ }
+
+ public quickfix.field.LinesOfText get(quickfix.field.LinesOfText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LinesOfText getLinesOfText() throws FieldNotFound {
+ return get(new quickfix.field.LinesOfText());
+ }
+
+ public boolean isSet(quickfix.field.LinesOfText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLinesOfText() {
+ return isSetField(33);
+ }
+
+ public static class LinesOfText extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {58, 354, 355, 0};
+
+ public LinesOfText() {
+ super(33, 58, ORDER);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.field.RawDataLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawDataLength get(quickfix.field.RawDataLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawDataLength getRawDataLength() throws FieldNotFound {
+ return get(new quickfix.field.RawDataLength());
+ }
+
+ public boolean isSet(quickfix.field.RawDataLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawDataLength() {
+ return isSetField(95);
+ }
+
+ public void set(quickfix.field.RawData value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawData get(quickfix.field.RawData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawData getRawData() throws FieldNotFound {
+ return get(new quickfix.field.RawData());
+ }
+
+ public boolean isSet(quickfix.field.RawData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawData() {
+ return isSetField(96);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ExecutionReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ExecutionReport.java
new file mode 100644
index 000000000..78168b0b2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ExecutionReport.java
@@ -0,0 +1,2062 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ExecutionReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "8";
+
+
+ public ExecutionReport() {
+
+ super(new int[] {37, 198, 11, 41, 109, 76, 382, 66, 17, 20, 19, 150, 39, 103, 378, 1, 63, 64, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 38, 152, 40, 44, 99, 211, 388, 389, 15, 376, 377, 59, 168, 432, 126, 18, 47, 32, 31, 194, 195, 30, 336, 29, 151, 14, 6, 424, 425, 426, 427, 75, 60, 113, 12, 13, 381, 119, 120, 155, 156, 21, 110, 111, 77, 210, 58, 354, 355, 193, 192, 439, 440, 442, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ExecutionReport(quickfix.field.OrderID orderID, quickfix.field.ExecID execID, quickfix.field.ExecTransType execTransType, quickfix.field.ExecType execType, quickfix.field.OrdStatus ordStatus, quickfix.field.Symbol symbol, quickfix.field.Side side, quickfix.field.LeavesQty leavesQty, quickfix.field.CumQty cumQty, quickfix.field.AvgPx avgPx) {
+ this();
+ setField(orderID);
+ setField(execID);
+ setField(execTransType);
+ setField(execType);
+ setField(ordStatus);
+ setField(symbol);
+ setField(side);
+ setField(leavesQty);
+ setField(cumQty);
+ setField(avgPx);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.NoContraBrokers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoContraBrokers get(quickfix.field.NoContraBrokers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoContraBrokers getNoContraBrokers() throws FieldNotFound {
+ return get(new quickfix.field.NoContraBrokers());
+ }
+
+ public boolean isSet(quickfix.field.NoContraBrokers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoContraBrokers() {
+ return isSetField(382);
+ }
+
+ public static class NoContraBrokers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {375, 337, 437, 438, 0};
+
+ public NoContraBrokers() {
+ super(382, 375, ORDER);
+ }
+
+ public void set(quickfix.field.ContraBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraBroker get(quickfix.field.ContraBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraBroker getContraBroker() throws FieldNotFound {
+ return get(new quickfix.field.ContraBroker());
+ }
+
+ public boolean isSet(quickfix.field.ContraBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraBroker() {
+ return isSetField(375);
+ }
+
+ public void set(quickfix.field.ContraTrader value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraTrader get(quickfix.field.ContraTrader value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraTrader getContraTrader() throws FieldNotFound {
+ return get(new quickfix.field.ContraTrader());
+ }
+
+ public boolean isSet(quickfix.field.ContraTrader field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraTrader() {
+ return isSetField(337);
+ }
+
+ public void set(quickfix.field.ContraTradeQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraTradeQty get(quickfix.field.ContraTradeQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraTradeQty getContraTradeQty() throws FieldNotFound {
+ return get(new quickfix.field.ContraTradeQty());
+ }
+
+ public boolean isSet(quickfix.field.ContraTradeQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraTradeQty() {
+ return isSetField(437);
+ }
+
+ public void set(quickfix.field.ContraTradeTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraTradeTime get(quickfix.field.ContraTradeTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraTradeTime getContraTradeTime() throws FieldNotFound {
+ return get(new quickfix.field.ContraTradeTime());
+ }
+
+ public boolean isSet(quickfix.field.ContraTradeTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraTradeTime() {
+ return isSetField(438);
+ }
+
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.ExecTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecTransType get(quickfix.field.ExecTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecTransType getExecTransType() throws FieldNotFound {
+ return get(new quickfix.field.ExecTransType());
+ }
+
+ public boolean isSet(quickfix.field.ExecTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecTransType() {
+ return isSetField(20);
+ }
+
+ public void set(quickfix.field.ExecRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecRefID get(quickfix.field.ExecRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecRefID getExecRefID() throws FieldNotFound {
+ return get(new quickfix.field.ExecRefID());
+ }
+
+ public boolean isSet(quickfix.field.ExecRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecRefID() {
+ return isSetField(19);
+ }
+
+ public void set(quickfix.field.ExecType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecType get(quickfix.field.ExecType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecType getExecType() throws FieldNotFound {
+ return get(new quickfix.field.ExecType());
+ }
+
+ public boolean isSet(quickfix.field.ExecType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecType() {
+ return isSetField(150);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.OrdRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdRejReason get(quickfix.field.OrdRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdRejReason getOrdRejReason() throws FieldNotFound {
+ return get(new quickfix.field.OrdRejReason());
+ }
+
+ public boolean isSet(quickfix.field.OrdRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdRejReason() {
+ return isSetField(103);
+ }
+
+ public void set(quickfix.field.ExecRestatementReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecRestatementReason get(quickfix.field.ExecRestatementReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecRestatementReason getExecRestatementReason() throws FieldNotFound {
+ return get(new quickfix.field.ExecRestatementReason());
+ }
+
+ public boolean isSet(quickfix.field.ExecRestatementReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecRestatementReason() {
+ return isSetField(378);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.field.PegDifference value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegDifference get(quickfix.field.PegDifference value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegDifference getPegDifference() throws FieldNotFound {
+ return get(new quickfix.field.PegDifference());
+ }
+
+ public boolean isSet(quickfix.field.PegDifference field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegDifference() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffset value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffset get(quickfix.field.DiscretionOffset value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffset getDiscretionOffset() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffset());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffset field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffset() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.Rule80A value) {
+ setField(value);
+ }
+
+ public quickfix.field.Rule80A get(quickfix.field.Rule80A value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Rule80A getRule80A() throws FieldNotFound {
+ return get(new quickfix.field.Rule80A());
+ }
+
+ public boolean isSet(quickfix.field.Rule80A field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRule80A() {
+ return isSetField(47);
+ }
+
+ public void set(quickfix.field.LastShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastShares get(quickfix.field.LastShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastShares getLastShares() throws FieldNotFound {
+ return get(new quickfix.field.LastShares());
+ }
+
+ public boolean isSet(quickfix.field.LastShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastShares() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.LastSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastSpotRate get(quickfix.field.LastSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastSpotRate getLastSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.LastSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.LastSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastSpotRate() {
+ return isSetField(194);
+ }
+
+ public void set(quickfix.field.LastForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastForwardPoints get(quickfix.field.LastForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastForwardPoints getLastForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.LastForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.LastForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastForwardPoints() {
+ return isSetField(195);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.LastCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastCapacity get(quickfix.field.LastCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastCapacity getLastCapacity() throws FieldNotFound {
+ return get(new quickfix.field.LastCapacity());
+ }
+
+ public boolean isSet(quickfix.field.LastCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastCapacity() {
+ return isSetField(29);
+ }
+
+ public void set(quickfix.field.LeavesQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LeavesQty get(quickfix.field.LeavesQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LeavesQty getLeavesQty() throws FieldNotFound {
+ return get(new quickfix.field.LeavesQty());
+ }
+
+ public boolean isSet(quickfix.field.LeavesQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLeavesQty() {
+ return isSetField(151);
+ }
+
+ public void set(quickfix.field.CumQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CumQty get(quickfix.field.CumQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CumQty getCumQty() throws FieldNotFound {
+ return get(new quickfix.field.CumQty());
+ }
+
+ public boolean isSet(quickfix.field.CumQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCumQty() {
+ return isSetField(14);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.DayOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayOrderQty get(quickfix.field.DayOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayOrderQty getDayOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.DayOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.DayOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayOrderQty() {
+ return isSetField(424);
+ }
+
+ public void set(quickfix.field.DayCumQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayCumQty get(quickfix.field.DayCumQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayCumQty getDayCumQty() throws FieldNotFound {
+ return get(new quickfix.field.DayCumQty());
+ }
+
+ public boolean isSet(quickfix.field.DayCumQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayCumQty() {
+ return isSetField(425);
+ }
+
+ public void set(quickfix.field.DayAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayAvgPx get(quickfix.field.DayAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayAvgPx getDayAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.DayAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.DayAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayAvgPx() {
+ return isSetField(426);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.ReportToExch value) {
+ setField(value);
+ }
+
+ public quickfix.field.ReportToExch get(quickfix.field.ReportToExch value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ReportToExch getReportToExch() throws FieldNotFound {
+ return get(new quickfix.field.ReportToExch());
+ }
+
+ public boolean isSet(quickfix.field.ReportToExch field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetReportToExch() {
+ return isSetField(113);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.OpenClose value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenClose get(quickfix.field.OpenClose value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenClose getOpenClose() throws FieldNotFound {
+ return get(new quickfix.field.OpenClose());
+ }
+
+ public boolean isSet(quickfix.field.OpenClose field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenClose() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.ClearingFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFirm get(quickfix.field.ClearingFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFirm getClearingFirm() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFirm());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFirm() {
+ return isSetField(439);
+ }
+
+ public void set(quickfix.field.ClearingAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingAccount get(quickfix.field.ClearingAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingAccount getClearingAccount() throws FieldNotFound {
+ return get(new quickfix.field.ClearingAccount());
+ }
+
+ public boolean isSet(quickfix.field.ClearingAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingAccount() {
+ return isSetField(440);
+ }
+
+ public void set(quickfix.field.MultiLegReportingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MultiLegReportingType get(quickfix.field.MultiLegReportingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MultiLegReportingType getMultiLegReportingType() throws FieldNotFound {
+ return get(new quickfix.field.MultiLegReportingType());
+ }
+
+ public boolean isSet(quickfix.field.MultiLegReportingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMultiLegReportingType() {
+ return isSetField(442);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Heartbeat.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Heartbeat.java
new file mode 100644
index 000000000..262729783
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Heartbeat.java
@@ -0,0 +1,41 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class Heartbeat extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "0";
+
+
+ public Heartbeat() {
+
+ super(new int[] {112, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.TestReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TestReqID get(quickfix.field.TestReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TestReqID getTestReqID() throws FieldNotFound {
+ return get(new quickfix.field.TestReqID());
+ }
+
+ public boolean isSet(quickfix.field.TestReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTestReqID() {
+ return isSetField(112);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/IndicationofInterest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/IndicationofInterest.java
new file mode 100644
index 000000000..48ae624c1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/IndicationofInterest.java
@@ -0,0 +1,913 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class IndicationofInterest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "6";
+
+
+ public IndicationofInterest() {
+
+ super(new int[] {23, 28, 26, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 27, 44, 15, 62, 25, 130, 199, 58, 354, 355, 60, 149, 215, 218, 219, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public IndicationofInterest(quickfix.field.IOIID iOIID, quickfix.field.IOITransType iOITransType, quickfix.field.Symbol symbol, quickfix.field.Side side, quickfix.field.IOIShares iOIShares) {
+ this();
+ setField(iOIID);
+ setField(iOITransType);
+ setField(symbol);
+ setField(side);
+ setField(iOIShares);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.IOITransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOITransType get(quickfix.field.IOITransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOITransType getIOITransType() throws FieldNotFound {
+ return get(new quickfix.field.IOITransType());
+ }
+
+ public boolean isSet(quickfix.field.IOITransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOITransType() {
+ return isSetField(28);
+ }
+
+ public void set(quickfix.field.IOIRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIRefID get(quickfix.field.IOIRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIRefID getIOIRefID() throws FieldNotFound {
+ return get(new quickfix.field.IOIRefID());
+ }
+
+ public boolean isSet(quickfix.field.IOIRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIRefID() {
+ return isSetField(26);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.IOIShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIShares get(quickfix.field.IOIShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIShares getIOIShares() throws FieldNotFound {
+ return get(new quickfix.field.IOIShares());
+ }
+
+ public boolean isSet(quickfix.field.IOIShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIShares() {
+ return isSetField(27);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.IOIQltyInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIQltyInd get(quickfix.field.IOIQltyInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIQltyInd getIOIQltyInd() throws FieldNotFound {
+ return get(new quickfix.field.IOIQltyInd());
+ }
+
+ public boolean isSet(quickfix.field.IOIQltyInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIQltyInd() {
+ return isSetField(25);
+ }
+
+ public void set(quickfix.field.IOINaturalFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOINaturalFlag get(quickfix.field.IOINaturalFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOINaturalFlag getIOINaturalFlag() throws FieldNotFound {
+ return get(new quickfix.field.IOINaturalFlag());
+ }
+
+ public boolean isSet(quickfix.field.IOINaturalFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOINaturalFlag() {
+ return isSetField(130);
+ }
+
+ public void set(quickfix.field.NoIOIQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoIOIQualifiers get(quickfix.field.NoIOIQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoIOIQualifiers getNoIOIQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoIOIQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoIOIQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoIOIQualifiers() {
+ return isSetField(199);
+ }
+
+ public static class NoIOIQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {104, 0};
+
+ public NoIOIQualifiers() {
+ super(199, 104, ORDER);
+ }
+
+ public void set(quickfix.field.IOIQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIQualifier get(quickfix.field.IOIQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIQualifier getIOIQualifier() throws FieldNotFound {
+ return get(new quickfix.field.IOIQualifier());
+ }
+
+ public boolean isSet(quickfix.field.IOIQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIQualifier() {
+ return isSetField(104);
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.URLLink value) {
+ setField(value);
+ }
+
+ public quickfix.field.URLLink get(quickfix.field.URLLink value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.URLLink getURLLink() throws FieldNotFound {
+ return get(new quickfix.field.URLLink());
+ }
+
+ public boolean isSet(quickfix.field.URLLink field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetURLLink() {
+ return isSetField(149);
+ }
+
+ public void set(quickfix.field.NoRoutingIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRoutingIDs get(quickfix.field.NoRoutingIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRoutingIDs getNoRoutingIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoRoutingIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoRoutingIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRoutingIDs() {
+ return isSetField(215);
+ }
+
+ public static class NoRoutingIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {216, 217, 0};
+
+ public NoRoutingIDs() {
+ super(215, 216, ORDER);
+ }
+
+ public void set(quickfix.field.RoutingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingType get(quickfix.field.RoutingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingType getRoutingType() throws FieldNotFound {
+ return get(new quickfix.field.RoutingType());
+ }
+
+ public boolean isSet(quickfix.field.RoutingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingType() {
+ return isSetField(216);
+ }
+
+ public void set(quickfix.field.RoutingID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingID get(quickfix.field.RoutingID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingID getRoutingID() throws FieldNotFound {
+ return get(new quickfix.field.RoutingID());
+ }
+
+ public boolean isSet(quickfix.field.RoutingID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingID() {
+ return isSetField(217);
+ }
+
+ }
+
+ public void set(quickfix.field.SpreadToBenchmark value) {
+ setField(value);
+ }
+
+ public quickfix.field.SpreadToBenchmark get(quickfix.field.SpreadToBenchmark value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SpreadToBenchmark getSpreadToBenchmark() throws FieldNotFound {
+ return get(new quickfix.field.SpreadToBenchmark());
+ }
+
+ public boolean isSet(quickfix.field.SpreadToBenchmark field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpreadToBenchmark() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.Benchmark value) {
+ setField(value);
+ }
+
+ public quickfix.field.Benchmark get(quickfix.field.Benchmark value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Benchmark getBenchmark() throws FieldNotFound {
+ return get(new quickfix.field.Benchmark());
+ }
+
+ public boolean isSet(quickfix.field.Benchmark field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmark() {
+ return isSetField(219);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListCancelRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListCancelRequest.java
new file mode 100644
index 000000000..af1ae17f4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListCancelRequest.java
@@ -0,0 +1,131 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class ListCancelRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "K";
+
+
+ public ListCancelRequest() {
+
+ super(new int[] {66, 60, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListCancelRequest(quickfix.field.ListID listID, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(listID);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListExecute.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListExecute.java
new file mode 100644
index 000000000..92b359829
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListExecute.java
@@ -0,0 +1,173 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class ListExecute extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "L";
+
+
+ public ListExecute() {
+
+ super(new int[] {66, 391, 390, 60, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListExecute(quickfix.field.ListID listID, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(listID);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStatus.java
new file mode 100644
index 000000000..3b4d2e127
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStatus.java
@@ -0,0 +1,483 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ListStatus extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "N";
+
+
+ public ListStatus() {
+
+ super(new int[] {66, 429, 82, 431, 83, 444, 445, 446, 60, 68, 73, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListStatus(quickfix.field.ListID listID, quickfix.field.ListStatusType listStatusType, quickfix.field.NoRpts noRpts, quickfix.field.ListOrderStatus listOrderStatus, quickfix.field.RptSeq rptSeq, quickfix.field.TotNoOrders totNoOrders) {
+ this();
+ setField(listID);
+ setField(listStatusType);
+ setField(noRpts);
+ setField(listOrderStatus);
+ setField(rptSeq);
+ setField(totNoOrders);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.ListStatusType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListStatusType get(quickfix.field.ListStatusType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListStatusType getListStatusType() throws FieldNotFound {
+ return get(new quickfix.field.ListStatusType());
+ }
+
+ public boolean isSet(quickfix.field.ListStatusType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListStatusType() {
+ return isSetField(429);
+ }
+
+ public void set(quickfix.field.NoRpts value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRpts get(quickfix.field.NoRpts value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRpts getNoRpts() throws FieldNotFound {
+ return get(new quickfix.field.NoRpts());
+ }
+
+ public boolean isSet(quickfix.field.NoRpts field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRpts() {
+ return isSetField(82);
+ }
+
+ public void set(quickfix.field.ListOrderStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListOrderStatus get(quickfix.field.ListOrderStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListOrderStatus getListOrderStatus() throws FieldNotFound {
+ return get(new quickfix.field.ListOrderStatus());
+ }
+
+ public boolean isSet(quickfix.field.ListOrderStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListOrderStatus() {
+ return isSetField(431);
+ }
+
+ public void set(quickfix.field.RptSeq value) {
+ setField(value);
+ }
+
+ public quickfix.field.RptSeq get(quickfix.field.RptSeq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RptSeq getRptSeq() throws FieldNotFound {
+ return get(new quickfix.field.RptSeq());
+ }
+
+ public boolean isSet(quickfix.field.RptSeq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRptSeq() {
+ return isSetField(83);
+ }
+
+ public void set(quickfix.field.ListStatusText value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListStatusText get(quickfix.field.ListStatusText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListStatusText getListStatusText() throws FieldNotFound {
+ return get(new quickfix.field.ListStatusText());
+ }
+
+ public boolean isSet(quickfix.field.ListStatusText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListStatusText() {
+ return isSetField(444);
+ }
+
+ public void set(quickfix.field.EncodedListStatusTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListStatusTextLen get(quickfix.field.EncodedListStatusTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListStatusTextLen getEncodedListStatusTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListStatusTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListStatusTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListStatusTextLen() {
+ return isSetField(445);
+ }
+
+ public void set(quickfix.field.EncodedListStatusText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListStatusText get(quickfix.field.EncodedListStatusText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListStatusText getEncodedListStatusText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListStatusText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListStatusText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListStatusText() {
+ return isSetField(446);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TotNoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoOrders get(quickfix.field.TotNoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoOrders getTotNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.TotNoOrders());
+ }
+
+ public boolean isSet(quickfix.field.TotNoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoOrders() {
+ return isSetField(68);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 14, 39, 151, 84, 6, 103, 58, 354, 355, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.CumQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CumQty get(quickfix.field.CumQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CumQty getCumQty() throws FieldNotFound {
+ return get(new quickfix.field.CumQty());
+ }
+
+ public boolean isSet(quickfix.field.CumQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCumQty() {
+ return isSetField(14);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.LeavesQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LeavesQty get(quickfix.field.LeavesQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LeavesQty getLeavesQty() throws FieldNotFound {
+ return get(new quickfix.field.LeavesQty());
+ }
+
+ public boolean isSet(quickfix.field.LeavesQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLeavesQty() {
+ return isSetField(151);
+ }
+
+ public void set(quickfix.field.CxlQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CxlQty get(quickfix.field.CxlQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CxlQty getCxlQty() throws FieldNotFound {
+ return get(new quickfix.field.CxlQty());
+ }
+
+ public boolean isSet(quickfix.field.CxlQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCxlQty() {
+ return isSetField(84);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.OrdRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdRejReason get(quickfix.field.OrdRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdRejReason getOrdRejReason() throws FieldNotFound {
+ return get(new quickfix.field.OrdRejReason());
+ }
+
+ public boolean isSet(quickfix.field.OrdRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdRejReason() {
+ return isSetField(103);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStatusRequest.java
new file mode 100644
index 000000000..df7fd0ef0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStatusRequest.java
@@ -0,0 +1,109 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class ListStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "M";
+
+
+ public ListStatusRequest() {
+
+ super(new int[] {66, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListStatusRequest(quickfix.field.ListID listID) {
+ this();
+ setField(listID);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStrikePrice.java
new file mode 100644
index 000000000..9c8bf5a83
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ListStrikePrice.java
@@ -0,0 +1,668 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ListStrikePrice extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "m";
+
+
+ public ListStrikePrice() {
+
+ super(new int[] {66, 422, 428, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListStrikePrice(quickfix.field.ListID listID, quickfix.field.TotNoStrikes totNoStrikes) {
+ this();
+ setField(listID);
+ setField(totNoStrikes);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.TotNoStrikes value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoStrikes get(quickfix.field.TotNoStrikes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoStrikes getTotNoStrikes() throws FieldNotFound {
+ return get(new quickfix.field.TotNoStrikes());
+ }
+
+ public boolean isSet(quickfix.field.TotNoStrikes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoStrikes() {
+ return isSetField(422);
+ }
+
+ public void set(quickfix.field.NoStrikes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStrikes get(quickfix.field.NoStrikes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStrikes getNoStrikes() throws FieldNotFound {
+ return get(new quickfix.field.NoStrikes());
+ }
+
+ public boolean isSet(quickfix.field.NoStrikes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStrikes() {
+ return isSetField(428);
+ }
+
+ public static class NoStrikes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 140, 11, 54, 44, 15, 58, 354, 355, 0};
+
+ public NoStrikes() {
+ super(428, 55, ORDER);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Logon.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Logon.java
new file mode 100644
index 000000000..1f2ac5149
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Logon.java
@@ -0,0 +1,227 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Logon extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "A";
+
+
+ public Logon() {
+
+ super(new int[] {98, 108, 95, 96, 141, 383, 384, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Logon(quickfix.field.EncryptMethod encryptMethod, quickfix.field.HeartBtInt heartBtInt) {
+ this();
+ setField(encryptMethod);
+ setField(heartBtInt);
+ }
+
+ public void set(quickfix.field.EncryptMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncryptMethod get(quickfix.field.EncryptMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncryptMethod getEncryptMethod() throws FieldNotFound {
+ return get(new quickfix.field.EncryptMethod());
+ }
+
+ public boolean isSet(quickfix.field.EncryptMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncryptMethod() {
+ return isSetField(98);
+ }
+
+ public void set(quickfix.field.HeartBtInt value) {
+ setField(value);
+ }
+
+ public quickfix.field.HeartBtInt get(quickfix.field.HeartBtInt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HeartBtInt getHeartBtInt() throws FieldNotFound {
+ return get(new quickfix.field.HeartBtInt());
+ }
+
+ public boolean isSet(quickfix.field.HeartBtInt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHeartBtInt() {
+ return isSetField(108);
+ }
+
+ public void set(quickfix.field.RawDataLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawDataLength get(quickfix.field.RawDataLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawDataLength getRawDataLength() throws FieldNotFound {
+ return get(new quickfix.field.RawDataLength());
+ }
+
+ public boolean isSet(quickfix.field.RawDataLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawDataLength() {
+ return isSetField(95);
+ }
+
+ public void set(quickfix.field.RawData value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawData get(quickfix.field.RawData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawData getRawData() throws FieldNotFound {
+ return get(new quickfix.field.RawData());
+ }
+
+ public boolean isSet(quickfix.field.RawData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawData() {
+ return isSetField(96);
+ }
+
+ public void set(quickfix.field.ResetSeqNumFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResetSeqNumFlag get(quickfix.field.ResetSeqNumFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResetSeqNumFlag getResetSeqNumFlag() throws FieldNotFound {
+ return get(new quickfix.field.ResetSeqNumFlag());
+ }
+
+ public boolean isSet(quickfix.field.ResetSeqNumFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResetSeqNumFlag() {
+ return isSetField(141);
+ }
+
+ public void set(quickfix.field.MaxMessageSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxMessageSize get(quickfix.field.MaxMessageSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxMessageSize getMaxMessageSize() throws FieldNotFound {
+ return get(new quickfix.field.MaxMessageSize());
+ }
+
+ public boolean isSet(quickfix.field.MaxMessageSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxMessageSize() {
+ return isSetField(383);
+ }
+
+ public void set(quickfix.field.NoMsgTypes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMsgTypes get(quickfix.field.NoMsgTypes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMsgTypes getNoMsgTypes() throws FieldNotFound {
+ return get(new quickfix.field.NoMsgTypes());
+ }
+
+ public boolean isSet(quickfix.field.NoMsgTypes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMsgTypes() {
+ return isSetField(384);
+ }
+
+ public static class NoMsgTypes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {372, 385, 0};
+
+ public NoMsgTypes() {
+ super(384, 372, ORDER);
+ }
+
+ public void set(quickfix.field.RefMsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefMsgType get(quickfix.field.RefMsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefMsgType getRefMsgType() throws FieldNotFound {
+ return get(new quickfix.field.RefMsgType());
+ }
+
+ public boolean isSet(quickfix.field.RefMsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefMsgType() {
+ return isSetField(372);
+ }
+
+ public void set(quickfix.field.MsgDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.MsgDirection get(quickfix.field.MsgDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MsgDirection getMsgDirection() throws FieldNotFound {
+ return get(new quickfix.field.MsgDirection());
+ }
+
+ public boolean isSet(quickfix.field.MsgDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMsgDirection() {
+ return isSetField(385);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Logout.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Logout.java
new file mode 100644
index 000000000..752229ca0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Logout.java
@@ -0,0 +1,83 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class Logout extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "5";
+
+
+ public Logout() {
+
+ super(new int[] {58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataIncrementalRefresh.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataIncrementalRefresh.java
new file mode 100644
index 000000000..180864447
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataIncrementalRefresh.java
@@ -0,0 +1,1250 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataIncrementalRefresh extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "X";
+
+
+ public MarketDataIncrementalRefresh() {
+
+ super(new int[] {262, 268, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.NoMDEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMDEntries get(quickfix.field.NoMDEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMDEntries getNoMDEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoMDEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoMDEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMDEntries() {
+ return isSetField(268);
+ }
+
+ public static class NoMDEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {279, 285, 269, 278, 280, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 291, 292, 270, 15, 271, 272, 273, 274, 275, 336, 276, 277, 282, 283, 284, 286, 59, 432, 126, 110, 18, 287, 37, 299, 288, 289, 346, 290, 387, 58, 354, 355, 0};
+
+ public NoMDEntries() {
+ super(268, 279, ORDER);
+ }
+
+ public void set(quickfix.field.MDUpdateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDUpdateAction get(quickfix.field.MDUpdateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDUpdateAction getMDUpdateAction() throws FieldNotFound {
+ return get(new quickfix.field.MDUpdateAction());
+ }
+
+ public boolean isSet(quickfix.field.MDUpdateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDUpdateAction() {
+ return isSetField(279);
+ }
+
+ public void set(quickfix.field.DeleteReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeleteReason get(quickfix.field.DeleteReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeleteReason getDeleteReason() throws FieldNotFound {
+ return get(new quickfix.field.DeleteReason());
+ }
+
+ public boolean isSet(quickfix.field.DeleteReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeleteReason() {
+ return isSetField(285);
+ }
+
+ public void set(quickfix.field.MDEntryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryType get(quickfix.field.MDEntryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryType getMDEntryType() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryType());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryType() {
+ return isSetField(269);
+ }
+
+ public void set(quickfix.field.MDEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryID get(quickfix.field.MDEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryID getMDEntryID() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryID());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryID() {
+ return isSetField(278);
+ }
+
+ public void set(quickfix.field.MDEntryRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryRefID get(quickfix.field.MDEntryRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryRefID getMDEntryRefID() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryRefID());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryRefID() {
+ return isSetField(280);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.FinancialStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.FinancialStatus get(quickfix.field.FinancialStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FinancialStatus getFinancialStatus() throws FieldNotFound {
+ return get(new quickfix.field.FinancialStatus());
+ }
+
+ public boolean isSet(quickfix.field.FinancialStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFinancialStatus() {
+ return isSetField(291);
+ }
+
+ public void set(quickfix.field.CorporateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CorporateAction get(quickfix.field.CorporateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CorporateAction getCorporateAction() throws FieldNotFound {
+ return get(new quickfix.field.CorporateAction());
+ }
+
+ public boolean isSet(quickfix.field.CorporateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCorporateAction() {
+ return isSetField(292);
+ }
+
+ public void set(quickfix.field.MDEntryPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPx get(quickfix.field.MDEntryPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPx getMDEntryPx() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPx());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPx() {
+ return isSetField(270);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.MDEntrySize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySize get(quickfix.field.MDEntrySize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySize getMDEntrySize() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySize());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySize() {
+ return isSetField(271);
+ }
+
+ public void set(quickfix.field.MDEntryDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryDate get(quickfix.field.MDEntryDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryDate getMDEntryDate() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryDate());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryDate() {
+ return isSetField(272);
+ }
+
+ public void set(quickfix.field.MDEntryTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryTime get(quickfix.field.MDEntryTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryTime getMDEntryTime() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryTime());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryTime() {
+ return isSetField(273);
+ }
+
+ public void set(quickfix.field.TickDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.TickDirection get(quickfix.field.TickDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TickDirection getTickDirection() throws FieldNotFound {
+ return get(new quickfix.field.TickDirection());
+ }
+
+ public boolean isSet(quickfix.field.TickDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTickDirection() {
+ return isSetField(274);
+ }
+
+ public void set(quickfix.field.MDMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDMkt get(quickfix.field.MDMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDMkt getMDMkt() throws FieldNotFound {
+ return get(new quickfix.field.MDMkt());
+ }
+
+ public boolean isSet(quickfix.field.MDMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDMkt() {
+ return isSetField(275);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.QuoteCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteCondition get(quickfix.field.QuoteCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteCondition getQuoteCondition() throws FieldNotFound {
+ return get(new quickfix.field.QuoteCondition());
+ }
+
+ public boolean isSet(quickfix.field.QuoteCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteCondition() {
+ return isSetField(276);
+ }
+
+ public void set(quickfix.field.TradeCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeCondition get(quickfix.field.TradeCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeCondition getTradeCondition() throws FieldNotFound {
+ return get(new quickfix.field.TradeCondition());
+ }
+
+ public boolean isSet(quickfix.field.TradeCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeCondition() {
+ return isSetField(277);
+ }
+
+ public void set(quickfix.field.MDEntryOriginator value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryOriginator get(quickfix.field.MDEntryOriginator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryOriginator getMDEntryOriginator() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryOriginator());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryOriginator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryOriginator() {
+ return isSetField(282);
+ }
+
+ public void set(quickfix.field.LocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocationID get(quickfix.field.LocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocationID getLocationID() throws FieldNotFound {
+ return get(new quickfix.field.LocationID());
+ }
+
+ public boolean isSet(quickfix.field.LocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocationID() {
+ return isSetField(283);
+ }
+
+ public void set(quickfix.field.DeskID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeskID get(quickfix.field.DeskID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeskID getDeskID() throws FieldNotFound {
+ return get(new quickfix.field.DeskID());
+ }
+
+ public boolean isSet(quickfix.field.DeskID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeskID() {
+ return isSetField(284);
+ }
+
+ public void set(quickfix.field.OpenCloseSettleFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenCloseSettleFlag get(quickfix.field.OpenCloseSettleFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenCloseSettleFlag getOpenCloseSettleFlag() throws FieldNotFound {
+ return get(new quickfix.field.OpenCloseSettleFlag());
+ }
+
+ public boolean isSet(quickfix.field.OpenCloseSettleFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenCloseSettleFlag() {
+ return isSetField(286);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.SellerDays value) {
+ setField(value);
+ }
+
+ public quickfix.field.SellerDays get(quickfix.field.SellerDays value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SellerDays getSellerDays() throws FieldNotFound {
+ return get(new quickfix.field.SellerDays());
+ }
+
+ public boolean isSet(quickfix.field.SellerDays field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSellerDays() {
+ return isSetField(287);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.field.MDEntryBuyer value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryBuyer get(quickfix.field.MDEntryBuyer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryBuyer getMDEntryBuyer() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryBuyer());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryBuyer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryBuyer() {
+ return isSetField(288);
+ }
+
+ public void set(quickfix.field.MDEntrySeller value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySeller get(quickfix.field.MDEntrySeller value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySeller getMDEntrySeller() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySeller());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySeller field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySeller() {
+ return isSetField(289);
+ }
+
+ public void set(quickfix.field.NumberOfOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumberOfOrders get(quickfix.field.NumberOfOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumberOfOrders getNumberOfOrders() throws FieldNotFound {
+ return get(new quickfix.field.NumberOfOrders());
+ }
+
+ public boolean isSet(quickfix.field.NumberOfOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumberOfOrders() {
+ return isSetField(346);
+ }
+
+ public void set(quickfix.field.MDEntryPositionNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPositionNo get(quickfix.field.MDEntryPositionNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPositionNo getMDEntryPositionNo() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPositionNo());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPositionNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPositionNo() {
+ return isSetField(290);
+ }
+
+ public void set(quickfix.field.TotalVolumeTraded value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalVolumeTraded get(quickfix.field.TotalVolumeTraded value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalVolumeTraded getTotalVolumeTraded() throws FieldNotFound {
+ return get(new quickfix.field.TotalVolumeTraded());
+ }
+
+ public boolean isSet(quickfix.field.TotalVolumeTraded field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalVolumeTraded() {
+ return isSetField(387);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataRequest.java
new file mode 100644
index 000000000..88a10f704
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataRequest.java
@@ -0,0 +1,638 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "V";
+
+
+ public MarketDataRequest() {
+
+ super(new int[] {262, 263, 264, 265, 266, 267, 146, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MarketDataRequest(quickfix.field.MDReqID mDReqID, quickfix.field.SubscriptionRequestType subscriptionRequestType, quickfix.field.MarketDepth marketDepth) {
+ this();
+ setField(mDReqID);
+ setField(subscriptionRequestType);
+ setField(marketDepth);
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.MarketDepth value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarketDepth get(quickfix.field.MarketDepth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarketDepth getMarketDepth() throws FieldNotFound {
+ return get(new quickfix.field.MarketDepth());
+ }
+
+ public boolean isSet(quickfix.field.MarketDepth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarketDepth() {
+ return isSetField(264);
+ }
+
+ public void set(quickfix.field.MDUpdateType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDUpdateType get(quickfix.field.MDUpdateType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDUpdateType getMDUpdateType() throws FieldNotFound {
+ return get(new quickfix.field.MDUpdateType());
+ }
+
+ public boolean isSet(quickfix.field.MDUpdateType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDUpdateType() {
+ return isSetField(265);
+ }
+
+ public void set(quickfix.field.AggregatedBook value) {
+ setField(value);
+ }
+
+ public quickfix.field.AggregatedBook get(quickfix.field.AggregatedBook value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AggregatedBook getAggregatedBook() throws FieldNotFound {
+ return get(new quickfix.field.AggregatedBook());
+ }
+
+ public boolean isSet(quickfix.field.AggregatedBook field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAggregatedBook() {
+ return isSetField(266);
+ }
+
+ public void set(quickfix.field.NoMDEntryTypes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMDEntryTypes get(quickfix.field.NoMDEntryTypes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMDEntryTypes getNoMDEntryTypes() throws FieldNotFound {
+ return get(new quickfix.field.NoMDEntryTypes());
+ }
+
+ public boolean isSet(quickfix.field.NoMDEntryTypes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMDEntryTypes() {
+ return isSetField(267);
+ }
+
+ public static class NoMDEntryTypes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {269, 0};
+
+ public NoMDEntryTypes() {
+ super(267, 269, ORDER);
+ }
+
+ public void set(quickfix.field.MDEntryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryType get(quickfix.field.MDEntryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryType getMDEntryType() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryType());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryType() {
+ return isSetField(269);
+ }
+
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 336, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataRequestReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataRequestReject.java
new file mode 100644
index 000000000..f41138858
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataRequestReject.java
@@ -0,0 +1,130 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class MarketDataRequestReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "Y";
+
+
+ public MarketDataRequestReject() {
+
+ super(new int[] {262, 281, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MarketDataRequestReject(quickfix.field.MDReqID mDReqID) {
+ this();
+ setField(mDReqID);
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.MDReqRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqRejReason get(quickfix.field.MDReqRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqRejReason getMDReqRejReason() throws FieldNotFound {
+ return get(new quickfix.field.MDReqRejReason());
+ }
+
+ public boolean isSet(quickfix.field.MDReqRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqRejReason() {
+ return isSetField(281);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataSnapshotFullRefresh.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataSnapshotFullRefresh.java
new file mode 100644
index 000000000..169c3f402
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MarketDataSnapshotFullRefresh.java
@@ -0,0 +1,1171 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataSnapshotFullRefresh extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "W";
+
+
+ public MarketDataSnapshotFullRefresh() {
+
+ super(new int[] {262, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 291, 292, 387, 268, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MarketDataSnapshotFullRefresh(quickfix.field.Symbol symbol) {
+ this();
+ setField(symbol);
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.FinancialStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.FinancialStatus get(quickfix.field.FinancialStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FinancialStatus getFinancialStatus() throws FieldNotFound {
+ return get(new quickfix.field.FinancialStatus());
+ }
+
+ public boolean isSet(quickfix.field.FinancialStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFinancialStatus() {
+ return isSetField(291);
+ }
+
+ public void set(quickfix.field.CorporateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CorporateAction get(quickfix.field.CorporateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CorporateAction getCorporateAction() throws FieldNotFound {
+ return get(new quickfix.field.CorporateAction());
+ }
+
+ public boolean isSet(quickfix.field.CorporateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCorporateAction() {
+ return isSetField(292);
+ }
+
+ public void set(quickfix.field.TotalVolumeTraded value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalVolumeTraded get(quickfix.field.TotalVolumeTraded value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalVolumeTraded getTotalVolumeTraded() throws FieldNotFound {
+ return get(new quickfix.field.TotalVolumeTraded());
+ }
+
+ public boolean isSet(quickfix.field.TotalVolumeTraded field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalVolumeTraded() {
+ return isSetField(387);
+ }
+
+ public void set(quickfix.field.NoMDEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMDEntries get(quickfix.field.NoMDEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMDEntries getNoMDEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoMDEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoMDEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMDEntries() {
+ return isSetField(268);
+ }
+
+ public static class NoMDEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {269, 270, 15, 271, 272, 273, 274, 275, 336, 276, 277, 282, 283, 284, 286, 59, 432, 126, 110, 18, 287, 37, 299, 288, 289, 346, 290, 58, 354, 355, 0};
+
+ public NoMDEntries() {
+ super(268, 269, ORDER);
+ }
+
+ public void set(quickfix.field.MDEntryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryType get(quickfix.field.MDEntryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryType getMDEntryType() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryType());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryType() {
+ return isSetField(269);
+ }
+
+ public void set(quickfix.field.MDEntryPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPx get(quickfix.field.MDEntryPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPx getMDEntryPx() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPx());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPx() {
+ return isSetField(270);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.MDEntrySize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySize get(quickfix.field.MDEntrySize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySize getMDEntrySize() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySize());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySize() {
+ return isSetField(271);
+ }
+
+ public void set(quickfix.field.MDEntryDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryDate get(quickfix.field.MDEntryDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryDate getMDEntryDate() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryDate());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryDate() {
+ return isSetField(272);
+ }
+
+ public void set(quickfix.field.MDEntryTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryTime get(quickfix.field.MDEntryTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryTime getMDEntryTime() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryTime());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryTime() {
+ return isSetField(273);
+ }
+
+ public void set(quickfix.field.TickDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.TickDirection get(quickfix.field.TickDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TickDirection getTickDirection() throws FieldNotFound {
+ return get(new quickfix.field.TickDirection());
+ }
+
+ public boolean isSet(quickfix.field.TickDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTickDirection() {
+ return isSetField(274);
+ }
+
+ public void set(quickfix.field.MDMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDMkt get(quickfix.field.MDMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDMkt getMDMkt() throws FieldNotFound {
+ return get(new quickfix.field.MDMkt());
+ }
+
+ public boolean isSet(quickfix.field.MDMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDMkt() {
+ return isSetField(275);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.QuoteCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteCondition get(quickfix.field.QuoteCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteCondition getQuoteCondition() throws FieldNotFound {
+ return get(new quickfix.field.QuoteCondition());
+ }
+
+ public boolean isSet(quickfix.field.QuoteCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteCondition() {
+ return isSetField(276);
+ }
+
+ public void set(quickfix.field.TradeCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeCondition get(quickfix.field.TradeCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeCondition getTradeCondition() throws FieldNotFound {
+ return get(new quickfix.field.TradeCondition());
+ }
+
+ public boolean isSet(quickfix.field.TradeCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeCondition() {
+ return isSetField(277);
+ }
+
+ public void set(quickfix.field.MDEntryOriginator value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryOriginator get(quickfix.field.MDEntryOriginator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryOriginator getMDEntryOriginator() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryOriginator());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryOriginator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryOriginator() {
+ return isSetField(282);
+ }
+
+ public void set(quickfix.field.LocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocationID get(quickfix.field.LocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocationID getLocationID() throws FieldNotFound {
+ return get(new quickfix.field.LocationID());
+ }
+
+ public boolean isSet(quickfix.field.LocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocationID() {
+ return isSetField(283);
+ }
+
+ public void set(quickfix.field.DeskID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeskID get(quickfix.field.DeskID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeskID getDeskID() throws FieldNotFound {
+ return get(new quickfix.field.DeskID());
+ }
+
+ public boolean isSet(quickfix.field.DeskID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeskID() {
+ return isSetField(284);
+ }
+
+ public void set(quickfix.field.OpenCloseSettleFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenCloseSettleFlag get(quickfix.field.OpenCloseSettleFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenCloseSettleFlag getOpenCloseSettleFlag() throws FieldNotFound {
+ return get(new quickfix.field.OpenCloseSettleFlag());
+ }
+
+ public boolean isSet(quickfix.field.OpenCloseSettleFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenCloseSettleFlag() {
+ return isSetField(286);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.SellerDays value) {
+ setField(value);
+ }
+
+ public quickfix.field.SellerDays get(quickfix.field.SellerDays value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SellerDays getSellerDays() throws FieldNotFound {
+ return get(new quickfix.field.SellerDays());
+ }
+
+ public boolean isSet(quickfix.field.SellerDays field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSellerDays() {
+ return isSetField(287);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.field.MDEntryBuyer value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryBuyer get(quickfix.field.MDEntryBuyer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryBuyer getMDEntryBuyer() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryBuyer());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryBuyer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryBuyer() {
+ return isSetField(288);
+ }
+
+ public void set(quickfix.field.MDEntrySeller value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySeller get(quickfix.field.MDEntrySeller value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySeller getMDEntrySeller() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySeller());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySeller field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySeller() {
+ return isSetField(289);
+ }
+
+ public void set(quickfix.field.NumberOfOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumberOfOrders get(quickfix.field.NumberOfOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumberOfOrders getNumberOfOrders() throws FieldNotFound {
+ return get(new quickfix.field.NumberOfOrders());
+ }
+
+ public boolean isSet(quickfix.field.NumberOfOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumberOfOrders() {
+ return isSetField(346);
+ }
+
+ public void set(quickfix.field.MDEntryPositionNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPositionNo get(quickfix.field.MDEntryPositionNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPositionNo getMDEntryPositionNo() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPositionNo());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPositionNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPositionNo() {
+ return isSetField(290);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MassQuote.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MassQuote.java
new file mode 100644
index 000000000..ca4795dff
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MassQuote.java
@@ -0,0 +1,1413 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MassQuote extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "i";
+
+
+ public MassQuote() {
+
+ super(new int[] {131, 117, 301, 293, 294, 296, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MassQuote(quickfix.field.QuoteID quoteID) {
+ this();
+ setField(quoteID);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.field.DefBidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.DefBidSize get(quickfix.field.DefBidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DefBidSize getDefBidSize() throws FieldNotFound {
+ return get(new quickfix.field.DefBidSize());
+ }
+
+ public boolean isSet(quickfix.field.DefBidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDefBidSize() {
+ return isSetField(293);
+ }
+
+ public void set(quickfix.field.DefOfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.DefOfferSize get(quickfix.field.DefOfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DefOfferSize getDefOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.DefOfferSize());
+ }
+
+ public boolean isSet(quickfix.field.DefOfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDefOfferSize() {
+ return isSetField(294);
+ }
+
+ public void set(quickfix.field.NoQuoteSets value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteSets get(quickfix.field.NoQuoteSets value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteSets getNoQuoteSets() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteSets());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteSets field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteSets() {
+ return isSetField(296);
+ }
+
+ public static class NoQuoteSets extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {302, 311, 312, 309, 305, 310, 313, 314, 315, 316, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 367, 304, 295, 0};
+
+ public NoQuoteSets() {
+ super(296, 302, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteSetID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteSetID get(quickfix.field.QuoteSetID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteSetID getQuoteSetID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteSetID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteSetID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteSetID() {
+ return isSetField(302);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIDSource get(quickfix.field.UnderlyingIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIDSource getUnderlyingIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDay get(quickfix.field.UnderlyingMaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDay getUnderlyingMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDay() {
+ return isSetField(314);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.QuoteSetValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteSetValidUntilTime get(quickfix.field.QuoteSetValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteSetValidUntilTime getQuoteSetValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.QuoteSetValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.QuoteSetValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteSetValidUntilTime() {
+ return isSetField(367);
+ }
+
+ public void set(quickfix.field.TotQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotQuoteEntries get(quickfix.field.TotQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotQuoteEntries getTotQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.TotQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.TotQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotQuoteEntries() {
+ return isSetField(304);
+ }
+
+ public void set(quickfix.field.NoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteEntries get(quickfix.field.NoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteEntries getNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteEntries() {
+ return isSetField(295);
+ }
+
+ public static class NoQuoteEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {299, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 132, 133, 134, 135, 62, 188, 190, 189, 191, 60, 336, 64, 40, 193, 192, 15, 0};
+
+ public NoQuoteEntries() {
+ super(295, 299, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Message.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Message.java
new file mode 100644
index 000000000..54ab3c225
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Message.java
@@ -0,0 +1,693 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.field.*;
+
+
+public class Message extends quickfix.Message {
+
+ static final long serialVersionUID = 20050617;
+
+ public Message() {
+ this(null);
+ }
+
+ protected Message(int[] fieldOrder) {
+ super(fieldOrder);
+
+ getHeader().setField(new BeginString("FIX.4.2"));
+
+ }
+
+ @Override
+ protected Header newHeader() {
+ return new Header(this);
+ }
+
+ @Override
+ public Header getHeader() {
+ return (Message.Header)header;
+ }
+
+ public static class Header extends quickfix.Message.Header {
+
+ static final long serialVersionUID = 20050617;
+
+ public Header(Message msg) {
+ // JNI compatibility
+ }
+
+ public void set(quickfix.field.BeginString value) {
+ setField(value);
+ }
+
+ public quickfix.field.BeginString get(quickfix.field.BeginString value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BeginString getBeginString() throws FieldNotFound {
+ return get(new quickfix.field.BeginString());
+ }
+
+ public boolean isSet(quickfix.field.BeginString field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBeginString() {
+ return isSetField(8);
+ }
+
+ public void set(quickfix.field.BodyLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.BodyLength get(quickfix.field.BodyLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BodyLength getBodyLength() throws FieldNotFound {
+ return get(new quickfix.field.BodyLength());
+ }
+
+ public boolean isSet(quickfix.field.BodyLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBodyLength() {
+ return isSetField(9);
+ }
+
+ public void set(quickfix.field.MsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MsgType get(quickfix.field.MsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MsgType getMsgType() throws FieldNotFound {
+ return get(new quickfix.field.MsgType());
+ }
+
+ public boolean isSet(quickfix.field.MsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMsgType() {
+ return isSetField(35);
+ }
+
+ public void set(quickfix.field.SenderCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SenderCompID get(quickfix.field.SenderCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SenderCompID getSenderCompID() throws FieldNotFound {
+ return get(new quickfix.field.SenderCompID());
+ }
+
+ public boolean isSet(quickfix.field.SenderCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSenderCompID() {
+ return isSetField(49);
+ }
+
+ public void set(quickfix.field.TargetCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetCompID get(quickfix.field.TargetCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetCompID getTargetCompID() throws FieldNotFound {
+ return get(new quickfix.field.TargetCompID());
+ }
+
+ public boolean isSet(quickfix.field.TargetCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetCompID() {
+ return isSetField(56);
+ }
+
+ public void set(quickfix.field.OnBehalfOfCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfCompID get(quickfix.field.OnBehalfOfCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfCompID getOnBehalfOfCompID() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfCompID());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfCompID() {
+ return isSetField(115);
+ }
+
+ public void set(quickfix.field.DeliverToCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliverToCompID get(quickfix.field.DeliverToCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliverToCompID getDeliverToCompID() throws FieldNotFound {
+ return get(new quickfix.field.DeliverToCompID());
+ }
+
+ public boolean isSet(quickfix.field.DeliverToCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliverToCompID() {
+ return isSetField(128);
+ }
+
+ public void set(quickfix.field.SecureDataLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecureDataLen get(quickfix.field.SecureDataLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecureDataLen getSecureDataLen() throws FieldNotFound {
+ return get(new quickfix.field.SecureDataLen());
+ }
+
+ public boolean isSet(quickfix.field.SecureDataLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecureDataLen() {
+ return isSetField(90);
+ }
+
+ public void set(quickfix.field.SecureData value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecureData get(quickfix.field.SecureData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecureData getSecureData() throws FieldNotFound {
+ return get(new quickfix.field.SecureData());
+ }
+
+ public boolean isSet(quickfix.field.SecureData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecureData() {
+ return isSetField(91);
+ }
+
+ public void set(quickfix.field.MsgSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.MsgSeqNum get(quickfix.field.MsgSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MsgSeqNum getMsgSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.MsgSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.MsgSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMsgSeqNum() {
+ return isSetField(34);
+ }
+
+ public void set(quickfix.field.SenderSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SenderSubID get(quickfix.field.SenderSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SenderSubID getSenderSubID() throws FieldNotFound {
+ return get(new quickfix.field.SenderSubID());
+ }
+
+ public boolean isSet(quickfix.field.SenderSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSenderSubID() {
+ return isSetField(50);
+ }
+
+ public void set(quickfix.field.SenderLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SenderLocationID get(quickfix.field.SenderLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SenderLocationID getSenderLocationID() throws FieldNotFound {
+ return get(new quickfix.field.SenderLocationID());
+ }
+
+ public boolean isSet(quickfix.field.SenderLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSenderLocationID() {
+ return isSetField(142);
+ }
+
+ public void set(quickfix.field.TargetSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetSubID get(quickfix.field.TargetSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetSubID getTargetSubID() throws FieldNotFound {
+ return get(new quickfix.field.TargetSubID());
+ }
+
+ public boolean isSet(quickfix.field.TargetSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetSubID() {
+ return isSetField(57);
+ }
+
+ public void set(quickfix.field.TargetLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetLocationID get(quickfix.field.TargetLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetLocationID getTargetLocationID() throws FieldNotFound {
+ return get(new quickfix.field.TargetLocationID());
+ }
+
+ public boolean isSet(quickfix.field.TargetLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetLocationID() {
+ return isSetField(143);
+ }
+
+ public void set(quickfix.field.OnBehalfOfSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfSubID get(quickfix.field.OnBehalfOfSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfSubID getOnBehalfOfSubID() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfSubID());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfSubID() {
+ return isSetField(116);
+ }
+
+ public void set(quickfix.field.OnBehalfOfLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfLocationID get(quickfix.field.OnBehalfOfLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfLocationID getOnBehalfOfLocationID() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfLocationID());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfLocationID() {
+ return isSetField(144);
+ }
+
+ public void set(quickfix.field.DeliverToSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliverToSubID get(quickfix.field.DeliverToSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliverToSubID getDeliverToSubID() throws FieldNotFound {
+ return get(new quickfix.field.DeliverToSubID());
+ }
+
+ public boolean isSet(quickfix.field.DeliverToSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliverToSubID() {
+ return isSetField(129);
+ }
+
+ public void set(quickfix.field.DeliverToLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliverToLocationID get(quickfix.field.DeliverToLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliverToLocationID getDeliverToLocationID() throws FieldNotFound {
+ return get(new quickfix.field.DeliverToLocationID());
+ }
+
+ public boolean isSet(quickfix.field.DeliverToLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliverToLocationID() {
+ return isSetField(145);
+ }
+
+ public void set(quickfix.field.PossDupFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.PossDupFlag get(quickfix.field.PossDupFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PossDupFlag getPossDupFlag() throws FieldNotFound {
+ return get(new quickfix.field.PossDupFlag());
+ }
+
+ public boolean isSet(quickfix.field.PossDupFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPossDupFlag() {
+ return isSetField(43);
+ }
+
+ public void set(quickfix.field.PossResend value) {
+ setField(value);
+ }
+
+ public quickfix.field.PossResend get(quickfix.field.PossResend value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PossResend getPossResend() throws FieldNotFound {
+ return get(new quickfix.field.PossResend());
+ }
+
+ public boolean isSet(quickfix.field.PossResend field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPossResend() {
+ return isSetField(97);
+ }
+
+ public void set(quickfix.field.SendingTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.SendingTime get(quickfix.field.SendingTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SendingTime getSendingTime() throws FieldNotFound {
+ return get(new quickfix.field.SendingTime());
+ }
+
+ public boolean isSet(quickfix.field.SendingTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSendingTime() {
+ return isSetField(52);
+ }
+
+ public void set(quickfix.field.OrigSendingTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigSendingTime get(quickfix.field.OrigSendingTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigSendingTime getOrigSendingTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigSendingTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigSendingTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigSendingTime() {
+ return isSetField(122);
+ }
+
+ public void set(quickfix.field.XmlDataLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.XmlDataLen get(quickfix.field.XmlDataLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.XmlDataLen getXmlDataLen() throws FieldNotFound {
+ return get(new quickfix.field.XmlDataLen());
+ }
+
+ public boolean isSet(quickfix.field.XmlDataLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetXmlDataLen() {
+ return isSetField(212);
+ }
+
+ public void set(quickfix.field.XmlData value) {
+ setField(value);
+ }
+
+ public quickfix.field.XmlData get(quickfix.field.XmlData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.XmlData getXmlData() throws FieldNotFound {
+ return get(new quickfix.field.XmlData());
+ }
+
+ public boolean isSet(quickfix.field.XmlData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetXmlData() {
+ return isSetField(213);
+ }
+
+ public void set(quickfix.field.MessageEncoding value) {
+ setField(value);
+ }
+
+ public quickfix.field.MessageEncoding get(quickfix.field.MessageEncoding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MessageEncoding getMessageEncoding() throws FieldNotFound {
+ return get(new quickfix.field.MessageEncoding());
+ }
+
+ public boolean isSet(quickfix.field.MessageEncoding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMessageEncoding() {
+ return isSetField(347);
+ }
+
+ public void set(quickfix.field.LastMsgSeqNumProcessed value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMsgSeqNumProcessed get(quickfix.field.LastMsgSeqNumProcessed value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMsgSeqNumProcessed getLastMsgSeqNumProcessed() throws FieldNotFound {
+ return get(new quickfix.field.LastMsgSeqNumProcessed());
+ }
+
+ public boolean isSet(quickfix.field.LastMsgSeqNumProcessed field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMsgSeqNumProcessed() {
+ return isSetField(369);
+ }
+
+ public void set(quickfix.field.OnBehalfOfSendingTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfSendingTime get(quickfix.field.OnBehalfOfSendingTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfSendingTime getOnBehalfOfSendingTime() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfSendingTime());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfSendingTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfSendingTime() {
+ return isSetField(370);
+ }
+
+ }
+
+
+ public void set(quickfix.field.SignatureLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.SignatureLength get(quickfix.field.SignatureLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SignatureLength getSignatureLength() throws FieldNotFound {
+ return get(new quickfix.field.SignatureLength());
+ }
+
+ public boolean isSet(quickfix.field.SignatureLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSignatureLength() {
+ return isSetField(93);
+ }
+
+ public void set(quickfix.field.Signature value) {
+ setField(value);
+ }
+
+ public quickfix.field.Signature get(quickfix.field.Signature value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Signature getSignature() throws FieldNotFound {
+ return get(new quickfix.field.Signature());
+ }
+
+ public boolean isSet(quickfix.field.Signature field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSignature() {
+ return isSetField(89);
+ }
+
+ public void set(quickfix.field.CheckSum value) {
+ setField(value);
+ }
+
+ public quickfix.field.CheckSum get(quickfix.field.CheckSum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CheckSum getCheckSum() throws FieldNotFound {
+ return get(new quickfix.field.CheckSum());
+ }
+
+ public boolean isSet(quickfix.field.CheckSum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCheckSum() {
+ return isSetField(10);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MessageCracker.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MessageCracker.java
new file mode 100644
index 000000000..b277d4f30
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MessageCracker.java
@@ -0,0 +1,802 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.fix42;
+
+import quickfix.*;
+import quickfix.field.*;
+import java.util.HashMap;
+
+public class MessageCracker {
+
+ private final HashMap methodRegistry = new HashMap<>();
+ private final MessageConsumer defaultFunction = this::onMessage;
+
+ public MessageCracker() {
+
+ methodRegistry.put(Heartbeat.MSGTYPE,
+ (message, sessionID) -> onMessage((Heartbeat) message, sessionID));
+
+ methodRegistry.put(Logon.MSGTYPE,
+ (message, sessionID) -> onMessage((Logon) message, sessionID));
+
+ methodRegistry.put(TestRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((TestRequest) message, sessionID));
+
+ methodRegistry.put(ResendRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ResendRequest) message, sessionID));
+
+ methodRegistry.put(Reject.MSGTYPE,
+ (message, sessionID) -> onMessage((Reject) message, sessionID));
+
+ methodRegistry.put(SequenceReset.MSGTYPE,
+ (message, sessionID) -> onMessage((SequenceReset) message, sessionID));
+
+ methodRegistry.put(Logout.MSGTYPE,
+ (message, sessionID) -> onMessage((Logout) message, sessionID));
+
+ methodRegistry.put(Advertisement.MSGTYPE,
+ (message, sessionID) -> onMessage((Advertisement) message, sessionID));
+
+ methodRegistry.put(IndicationofInterest.MSGTYPE,
+ (message, sessionID) -> onMessage((IndicationofInterest) message, sessionID));
+
+ methodRegistry.put(News.MSGTYPE,
+ (message, sessionID) -> onMessage((News) message, sessionID));
+
+ methodRegistry.put(Email.MSGTYPE,
+ (message, sessionID) -> onMessage((Email) message, sessionID));
+
+ methodRegistry.put(QuoteRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteRequest) message, sessionID));
+
+ methodRegistry.put(Quote.MSGTYPE,
+ (message, sessionID) -> onMessage((Quote) message, sessionID));
+
+ methodRegistry.put(MassQuote.MSGTYPE,
+ (message, sessionID) -> onMessage((MassQuote) message, sessionID));
+
+ methodRegistry.put(QuoteCancel.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteCancel) message, sessionID));
+
+ methodRegistry.put(QuoteStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteStatusRequest) message, sessionID));
+
+ methodRegistry.put(QuoteAcknowledgement.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteAcknowledgement) message, sessionID));
+
+ methodRegistry.put(MarketDataRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataRequest) message, sessionID));
+
+ methodRegistry.put(MarketDataSnapshotFullRefresh.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataSnapshotFullRefresh) message, sessionID));
+
+ methodRegistry.put(MarketDataIncrementalRefresh.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataIncrementalRefresh) message, sessionID));
+
+ methodRegistry.put(MarketDataRequestReject.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataRequestReject) message, sessionID));
+
+ methodRegistry.put(SecurityDefinitionRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityDefinitionRequest) message, sessionID));
+
+ methodRegistry.put(SecurityDefinition.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityDefinition) message, sessionID));
+
+ methodRegistry.put(SecurityStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityStatusRequest) message, sessionID));
+
+ methodRegistry.put(SecurityStatus.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityStatus) message, sessionID));
+
+ methodRegistry.put(TradingSessionStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((TradingSessionStatusRequest) message, sessionID));
+
+ methodRegistry.put(TradingSessionStatus.MSGTYPE,
+ (message, sessionID) -> onMessage((TradingSessionStatus) message, sessionID));
+
+ methodRegistry.put(NewOrderSingle.MSGTYPE,
+ (message, sessionID) -> onMessage((NewOrderSingle) message, sessionID));
+
+ methodRegistry.put(ExecutionReport.MSGTYPE,
+ (message, sessionID) -> onMessage((ExecutionReport) message, sessionID));
+
+ methodRegistry.put(DontKnowTrade.MSGTYPE,
+ (message, sessionID) -> onMessage((DontKnowTrade) message, sessionID));
+
+ methodRegistry.put(OrderCancelReplaceRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderCancelReplaceRequest) message, sessionID));
+
+ methodRegistry.put(OrderCancelRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderCancelRequest) message, sessionID));
+
+ methodRegistry.put(OrderCancelReject.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderCancelReject) message, sessionID));
+
+ methodRegistry.put(OrderStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderStatusRequest) message, sessionID));
+
+ methodRegistry.put(Allocation.MSGTYPE,
+ (message, sessionID) -> onMessage((Allocation) message, sessionID));
+
+ methodRegistry.put(AllocationACK.MSGTYPE,
+ (message, sessionID) -> onMessage((AllocationACK) message, sessionID));
+
+ methodRegistry.put(SettlementInstructions.MSGTYPE,
+ (message, sessionID) -> onMessage((SettlementInstructions) message, sessionID));
+
+ methodRegistry.put(BidRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((BidRequest) message, sessionID));
+
+ methodRegistry.put(BidResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((BidResponse) message, sessionID));
+
+ methodRegistry.put(NewOrderList.MSGTYPE,
+ (message, sessionID) -> onMessage((NewOrderList) message, sessionID));
+
+ methodRegistry.put(ListStrikePrice.MSGTYPE,
+ (message, sessionID) -> onMessage((ListStrikePrice) message, sessionID));
+
+ methodRegistry.put(ListStatus.MSGTYPE,
+ (message, sessionID) -> onMessage((ListStatus) message, sessionID));
+
+ methodRegistry.put(ListExecute.MSGTYPE,
+ (message, sessionID) -> onMessage((ListExecute) message, sessionID));
+
+ methodRegistry.put(ListCancelRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ListCancelRequest) message, sessionID));
+
+ methodRegistry.put(ListStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ListStatusRequest) message, sessionID));
+
+ methodRegistry.put(BusinessMessageReject.MSGTYPE,
+ (message, sessionID) -> onMessage((BusinessMessageReject) message, sessionID));
+
+ }
+
+ /**
+ * Callback for quickfix.Message message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(quickfix.Message message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXHeartbeat message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Heartbeat message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXLogon message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Logon message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXTestRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TestRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXResendRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ResendRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Reject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXSequenceReset message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SequenceReset message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXLogout message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Logout message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXAdvertisement message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Advertisement message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXIndicationofInterest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(IndicationofInterest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNews message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(News message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXEmail message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Email message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuote message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Quote message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMassQuote message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MassQuote message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteCancel message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteCancel message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteAcknowledgement message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteAcknowledgement message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataSnapshotFullRefresh message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataSnapshotFullRefresh message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataIncrementalRefresh message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataIncrementalRefresh message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataRequestReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataRequestReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityDefinitionRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityDefinitionRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityDefinition message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityDefinition message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityStatus message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityStatus message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradingSessionStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradingSessionStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradingSessionStatus message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradingSessionStatus message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNewOrderSingle message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NewOrderSingle message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXExecutionReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ExecutionReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXDontKnowTrade message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(DontKnowTrade message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderCancelReplaceRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderCancelReplaceRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderCancelRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderCancelRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderCancelReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderCancelReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAllocation message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Allocation message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAllocationACK message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(AllocationACK message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSettlementInstructions message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SettlementInstructions message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXBidRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(BidRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXBidResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(BidResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNewOrderList message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NewOrderList message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListStrikePrice message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListStrikePrice message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListStatus message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListStatus message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListExecute message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListExecute message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListCancelRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListCancelRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXBusinessMessageReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(BusinessMessageReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ public void crack(quickfix.Message message, SessionID sessionID)
+ throws UnsupportedMessageType, FieldNotFound, IncorrectTagValue {
+ crack42((Message) message, sessionID);
+ }
+
+ /**
+ * Cracker method for 42 messages.
+ *
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void crack42(Message message, SessionID sessionID)
+ throws UnsupportedMessageType, FieldNotFound, IncorrectTagValue {
+
+ String type = message.getHeader().getString(MsgType.FIELD);
+ methodRegistry.getOrDefault(type, defaultFunction).accept(message, sessionID);
+ }
+
+ @FunctionalInterface
+ private interface MessageConsumer {
+ void accept(Message message, SessionID sessionID)
+ throws UnsupportedMessageType, IncorrectTagValue, FieldNotFound;
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MessageFactory.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MessageFactory.java
new file mode 100644
index 000000000..d2cb7d7fc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/MessageFactory.java
@@ -0,0 +1,429 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.fix42;
+
+import quickfix.Message;
+import quickfix.Group;
+
+public class MessageFactory implements quickfix.MessageFactory {
+
+ public Message create(String beginString, String msgType) {
+
+ switch (msgType) {
+
+ case quickfix.fix42.Heartbeat.MSGTYPE:
+ return new quickfix.fix42.Heartbeat();
+
+ case quickfix.fix42.Logon.MSGTYPE:
+ return new quickfix.fix42.Logon();
+
+ case quickfix.fix42.TestRequest.MSGTYPE:
+ return new quickfix.fix42.TestRequest();
+
+ case quickfix.fix42.ResendRequest.MSGTYPE:
+ return new quickfix.fix42.ResendRequest();
+
+ case quickfix.fix42.Reject.MSGTYPE:
+ return new quickfix.fix42.Reject();
+
+ case quickfix.fix42.SequenceReset.MSGTYPE:
+ return new quickfix.fix42.SequenceReset();
+
+ case quickfix.fix42.Logout.MSGTYPE:
+ return new quickfix.fix42.Logout();
+
+ case quickfix.fix42.Advertisement.MSGTYPE:
+ return new quickfix.fix42.Advertisement();
+
+ case quickfix.fix42.IndicationofInterest.MSGTYPE:
+ return new quickfix.fix42.IndicationofInterest();
+
+ case quickfix.fix42.News.MSGTYPE:
+ return new quickfix.fix42.News();
+
+ case quickfix.fix42.Email.MSGTYPE:
+ return new quickfix.fix42.Email();
+
+ case quickfix.fix42.QuoteRequest.MSGTYPE:
+ return new quickfix.fix42.QuoteRequest();
+
+ case quickfix.fix42.Quote.MSGTYPE:
+ return new quickfix.fix42.Quote();
+
+ case quickfix.fix42.MassQuote.MSGTYPE:
+ return new quickfix.fix42.MassQuote();
+
+ case quickfix.fix42.QuoteCancel.MSGTYPE:
+ return new quickfix.fix42.QuoteCancel();
+
+ case quickfix.fix42.QuoteStatusRequest.MSGTYPE:
+ return new quickfix.fix42.QuoteStatusRequest();
+
+ case quickfix.fix42.QuoteAcknowledgement.MSGTYPE:
+ return new quickfix.fix42.QuoteAcknowledgement();
+
+ case quickfix.fix42.MarketDataRequest.MSGTYPE:
+ return new quickfix.fix42.MarketDataRequest();
+
+ case quickfix.fix42.MarketDataSnapshotFullRefresh.MSGTYPE:
+ return new quickfix.fix42.MarketDataSnapshotFullRefresh();
+
+ case quickfix.fix42.MarketDataIncrementalRefresh.MSGTYPE:
+ return new quickfix.fix42.MarketDataIncrementalRefresh();
+
+ case quickfix.fix42.MarketDataRequestReject.MSGTYPE:
+ return new quickfix.fix42.MarketDataRequestReject();
+
+ case quickfix.fix42.SecurityDefinitionRequest.MSGTYPE:
+ return new quickfix.fix42.SecurityDefinitionRequest();
+
+ case quickfix.fix42.SecurityDefinition.MSGTYPE:
+ return new quickfix.fix42.SecurityDefinition();
+
+ case quickfix.fix42.SecurityStatusRequest.MSGTYPE:
+ return new quickfix.fix42.SecurityStatusRequest();
+
+ case quickfix.fix42.SecurityStatus.MSGTYPE:
+ return new quickfix.fix42.SecurityStatus();
+
+ case quickfix.fix42.TradingSessionStatusRequest.MSGTYPE:
+ return new quickfix.fix42.TradingSessionStatusRequest();
+
+ case quickfix.fix42.TradingSessionStatus.MSGTYPE:
+ return new quickfix.fix42.TradingSessionStatus();
+
+ case quickfix.fix42.NewOrderSingle.MSGTYPE:
+ return new quickfix.fix42.NewOrderSingle();
+
+ case quickfix.fix42.ExecutionReport.MSGTYPE:
+ return new quickfix.fix42.ExecutionReport();
+
+ case quickfix.fix42.DontKnowTrade.MSGTYPE:
+ return new quickfix.fix42.DontKnowTrade();
+
+ case quickfix.fix42.OrderCancelReplaceRequest.MSGTYPE:
+ return new quickfix.fix42.OrderCancelReplaceRequest();
+
+ case quickfix.fix42.OrderCancelRequest.MSGTYPE:
+ return new quickfix.fix42.OrderCancelRequest();
+
+ case quickfix.fix42.OrderCancelReject.MSGTYPE:
+ return new quickfix.fix42.OrderCancelReject();
+
+ case quickfix.fix42.OrderStatusRequest.MSGTYPE:
+ return new quickfix.fix42.OrderStatusRequest();
+
+ case quickfix.fix42.Allocation.MSGTYPE:
+ return new quickfix.fix42.Allocation();
+
+ case quickfix.fix42.AllocationACK.MSGTYPE:
+ return new quickfix.fix42.AllocationACK();
+
+ case quickfix.fix42.SettlementInstructions.MSGTYPE:
+ return new quickfix.fix42.SettlementInstructions();
+
+ case quickfix.fix42.BidRequest.MSGTYPE:
+ return new quickfix.fix42.BidRequest();
+
+ case quickfix.fix42.BidResponse.MSGTYPE:
+ return new quickfix.fix42.BidResponse();
+
+ case quickfix.fix42.NewOrderList.MSGTYPE:
+ return new quickfix.fix42.NewOrderList();
+
+ case quickfix.fix42.ListStrikePrice.MSGTYPE:
+ return new quickfix.fix42.ListStrikePrice();
+
+ case quickfix.fix42.ListStatus.MSGTYPE:
+ return new quickfix.fix42.ListStatus();
+
+ case quickfix.fix42.ListExecute.MSGTYPE:
+ return new quickfix.fix42.ListExecute();
+
+ case quickfix.fix42.ListCancelRequest.MSGTYPE:
+ return new quickfix.fix42.ListCancelRequest();
+
+ case quickfix.fix42.ListStatusRequest.MSGTYPE:
+ return new quickfix.fix42.ListStatusRequest();
+
+ case quickfix.fix42.BusinessMessageReject.MSGTYPE:
+ return new quickfix.fix42.BusinessMessageReject();
+
+ }
+
+ return new quickfix.fix42.Message();
+ }
+
+ public Group create(String beginString, String msgType, int correspondingFieldID) {
+
+ switch (msgType) {
+
+ case quickfix.fix42.Logon.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMsgTypes.FIELD:
+ return new quickfix.fix42.Logon.NoMsgTypes();
+
+ }
+ break;
+
+ case quickfix.fix42.IndicationofInterest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoIOIQualifiers.FIELD:
+ return new quickfix.fix42.IndicationofInterest.NoIOIQualifiers();
+
+ case quickfix.field.NoRoutingIDs.FIELD:
+ return new quickfix.fix42.IndicationofInterest.NoRoutingIDs();
+
+ }
+ break;
+
+ case quickfix.fix42.News.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRoutingIDs.FIELD:
+ return new quickfix.fix42.News.NoRoutingIDs();
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix42.News.NoRelatedSym();
+
+ case quickfix.field.LinesOfText.FIELD:
+ return new quickfix.fix42.News.LinesOfText();
+
+ }
+ break;
+
+ case quickfix.fix42.Email.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRoutingIDs.FIELD:
+ return new quickfix.fix42.Email.NoRoutingIDs();
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix42.Email.NoRelatedSym();
+
+ case quickfix.field.LinesOfText.FIELD:
+ return new quickfix.fix42.Email.LinesOfText();
+
+ }
+ break;
+
+ case quickfix.fix42.QuoteRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix42.QuoteRequest.NoRelatedSym();
+
+ }
+ break;
+
+ case quickfix.fix42.MassQuote.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteSets.FIELD:
+ return new quickfix.fix42.MassQuote.NoQuoteSets();
+
+ case quickfix.field.NoQuoteEntries.FIELD:
+ return new quickfix.fix42.MassQuote.NoQuoteSets.NoQuoteEntries();
+
+ }
+ break;
+
+ case quickfix.fix42.QuoteCancel.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteEntries.FIELD:
+ return new quickfix.fix42.QuoteCancel.NoQuoteEntries();
+
+ }
+ break;
+
+ case quickfix.fix42.QuoteAcknowledgement.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteSets.FIELD:
+ return new quickfix.fix42.QuoteAcknowledgement.NoQuoteSets();
+
+ case quickfix.field.NoQuoteEntries.FIELD:
+ return new quickfix.fix42.QuoteAcknowledgement.NoQuoteSets.NoQuoteEntries();
+
+ }
+ break;
+
+ case quickfix.fix42.MarketDataRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMDEntryTypes.FIELD:
+ return new quickfix.fix42.MarketDataRequest.NoMDEntryTypes();
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix42.MarketDataRequest.NoRelatedSym();
+
+ }
+ break;
+
+ case quickfix.fix42.MarketDataSnapshotFullRefresh.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMDEntries.FIELD:
+ return new quickfix.fix42.MarketDataSnapshotFullRefresh.NoMDEntries();
+
+ }
+ break;
+
+ case quickfix.fix42.MarketDataIncrementalRefresh.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMDEntries.FIELD:
+ return new quickfix.fix42.MarketDataIncrementalRefresh.NoMDEntries();
+
+ }
+ break;
+
+ case quickfix.fix42.SecurityDefinitionRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix42.SecurityDefinitionRequest.NoRelatedSym();
+
+ }
+ break;
+
+ case quickfix.fix42.SecurityDefinition.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix42.SecurityDefinition.NoRelatedSym();
+
+ }
+ break;
+
+ case quickfix.fix42.NewOrderSingle.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix42.NewOrderSingle.NoAllocs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix42.NewOrderSingle.NoTradingSessions();
+
+ }
+ break;
+
+ case quickfix.fix42.ExecutionReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoContraBrokers.FIELD:
+ return new quickfix.fix42.ExecutionReport.NoContraBrokers();
+
+ }
+ break;
+
+ case quickfix.fix42.OrderCancelReplaceRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix42.OrderCancelReplaceRequest.NoAllocs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix42.OrderCancelReplaceRequest.NoTradingSessions();
+
+ }
+ break;
+
+ case quickfix.fix42.Allocation.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix42.Allocation.NoOrders();
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix42.Allocation.NoExecs();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix42.Allocation.NoAllocs();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix42.Allocation.NoAllocs.NoMiscFees();
+
+ }
+ break;
+
+ case quickfix.fix42.BidRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoBidDescriptors.FIELD:
+ return new quickfix.fix42.BidRequest.NoBidDescriptors();
+
+ case quickfix.field.NoBidComponents.FIELD:
+ return new quickfix.fix42.BidRequest.NoBidComponents();
+
+ }
+ break;
+
+ case quickfix.fix42.BidResponse.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoBidComponents.FIELD:
+ return new quickfix.fix42.BidResponse.NoBidComponents();
+
+ }
+ break;
+
+ case quickfix.fix42.NewOrderList.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix42.NewOrderList.NoOrders();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix42.NewOrderList.NoOrders.NoAllocs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix42.NewOrderList.NoOrders.NoTradingSessions();
+
+ }
+ break;
+
+ case quickfix.fix42.ListStrikePrice.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoStrikes.FIELD:
+ return new quickfix.fix42.ListStrikePrice.NoStrikes();
+
+ }
+ break;
+
+ case quickfix.fix42.ListStatus.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix42.ListStatus.NoOrders();
+
+ }
+ break;
+
+ }
+
+ return null;
+ }
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/NewOrderList.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/NewOrderList.java
new file mode 100644
index 000000000..9b7e41bcc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/NewOrderList.java
@@ -0,0 +1,1930 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NewOrderList extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "E";
+
+
+ public NewOrderList() {
+
+ super(new int[] {66, 390, 391, 414, 394, 415, 433, 69, 352, 353, 68, 73, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NewOrderList(quickfix.field.ListID listID, quickfix.field.BidType bidType, quickfix.field.TotNoOrders totNoOrders) {
+ this();
+ setField(listID);
+ setField(bidType);
+ setField(totNoOrders);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.ProgRptReqs value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgRptReqs get(quickfix.field.ProgRptReqs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgRptReqs getProgRptReqs() throws FieldNotFound {
+ return get(new quickfix.field.ProgRptReqs());
+ }
+
+ public boolean isSet(quickfix.field.ProgRptReqs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgRptReqs() {
+ return isSetField(414);
+ }
+
+ public void set(quickfix.field.BidType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidType get(quickfix.field.BidType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidType getBidType() throws FieldNotFound {
+ return get(new quickfix.field.BidType());
+ }
+
+ public boolean isSet(quickfix.field.BidType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidType() {
+ return isSetField(394);
+ }
+
+ public void set(quickfix.field.ProgPeriodInterval value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgPeriodInterval get(quickfix.field.ProgPeriodInterval value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgPeriodInterval getProgPeriodInterval() throws FieldNotFound {
+ return get(new quickfix.field.ProgPeriodInterval());
+ }
+
+ public boolean isSet(quickfix.field.ProgPeriodInterval field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgPeriodInterval() {
+ return isSetField(415);
+ }
+
+ public void set(quickfix.field.ListExecInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListExecInstType get(quickfix.field.ListExecInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListExecInstType getListExecInstType() throws FieldNotFound {
+ return get(new quickfix.field.ListExecInstType());
+ }
+
+ public boolean isSet(quickfix.field.ListExecInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListExecInstType() {
+ return isSetField(433);
+ }
+
+ public void set(quickfix.field.ListExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListExecInst get(quickfix.field.ListExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListExecInst getListExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ListExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ListExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListExecInst() {
+ return isSetField(69);
+ }
+
+ public void set(quickfix.field.EncodedListExecInstLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListExecInstLen get(quickfix.field.EncodedListExecInstLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListExecInstLen getEncodedListExecInstLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListExecInstLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListExecInstLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListExecInstLen() {
+ return isSetField(352);
+ }
+
+ public void set(quickfix.field.EncodedListExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListExecInst get(quickfix.field.EncodedListExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListExecInst getEncodedListExecInst() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListExecInst());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListExecInst() {
+ return isSetField(353);
+ }
+
+ public void set(quickfix.field.TotNoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoOrders get(quickfix.field.TotNoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoOrders getTotNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.TotNoOrders());
+ }
+
+ public boolean isSet(quickfix.field.TotNoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoOrders() {
+ return isSetField(68);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 67, 160, 109, 76, 1, 78, 63, 64, 21, 18, 110, 111, 100, 386, 81, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 140, 54, 401, 114, 60, 38, 152, 40, 44, 99, 15, 376, 377, 23, 117, 59, 168, 432, 126, 427, 12, 13, 47, 121, 120, 58, 354, 355, 193, 192, 77, 203, 204, 210, 211, 388, 389, 439, 440, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.ListSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListSeqNo get(quickfix.field.ListSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListSeqNo getListSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.ListSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.ListSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListSeqNo() {
+ return isSetField(67);
+ }
+
+ public void set(quickfix.field.SettlInstMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMode get(quickfix.field.SettlInstMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMode getSettlInstMode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMode() {
+ return isSetField(160);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocShares get(quickfix.field.AllocShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocShares getAllocShares() throws FieldNotFound {
+ return get(new quickfix.field.AllocShares());
+ }
+
+ public boolean isSet(quickfix.field.AllocShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocShares() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.SideValueInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValueInd get(quickfix.field.SideValueInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValueInd getSideValueInd() throws FieldNotFound {
+ return get(new quickfix.field.SideValueInd());
+ }
+
+ public boolean isSet(quickfix.field.SideValueInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValueInd() {
+ return isSetField(401);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.Rule80A value) {
+ setField(value);
+ }
+
+ public quickfix.field.Rule80A get(quickfix.field.Rule80A value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Rule80A getRule80A() throws FieldNotFound {
+ return get(new quickfix.field.Rule80A());
+ }
+
+ public boolean isSet(quickfix.field.Rule80A field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRule80A() {
+ return isSetField(47);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.OpenClose value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenClose get(quickfix.field.OpenClose value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenClose getOpenClose() throws FieldNotFound {
+ return get(new quickfix.field.OpenClose());
+ }
+
+ public boolean isSet(quickfix.field.OpenClose field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenClose() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.CustomerOrFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustomerOrFirm get(quickfix.field.CustomerOrFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustomerOrFirm getCustomerOrFirm() throws FieldNotFound {
+ return get(new quickfix.field.CustomerOrFirm());
+ }
+
+ public boolean isSet(quickfix.field.CustomerOrFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustomerOrFirm() {
+ return isSetField(204);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.field.PegDifference value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegDifference get(quickfix.field.PegDifference value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegDifference getPegDifference() throws FieldNotFound {
+ return get(new quickfix.field.PegDifference());
+ }
+
+ public boolean isSet(quickfix.field.PegDifference field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegDifference() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffset value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffset get(quickfix.field.DiscretionOffset value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffset getDiscretionOffset() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffset());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffset field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffset() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.ClearingFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFirm get(quickfix.field.ClearingFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFirm getClearingFirm() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFirm());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFirm() {
+ return isSetField(439);
+ }
+
+ public void set(quickfix.field.ClearingAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingAccount get(quickfix.field.ClearingAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingAccount getClearingAccount() throws FieldNotFound {
+ return get(new quickfix.field.ClearingAccount());
+ }
+
+ public boolean isSet(quickfix.field.ClearingAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingAccount() {
+ return isSetField(440);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/NewOrderSingle.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/NewOrderSingle.java
new file mode 100644
index 000000000..534175068
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/NewOrderSingle.java
@@ -0,0 +1,1607 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NewOrderSingle extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "D";
+
+
+ public NewOrderSingle() {
+
+ super(new int[] {11, 109, 76, 1, 78, 63, 64, 21, 18, 110, 111, 100, 386, 81, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 140, 54, 114, 60, 38, 152, 40, 44, 99, 15, 376, 377, 23, 117, 59, 168, 432, 126, 427, 12, 13, 47, 121, 120, 58, 354, 355, 193, 192, 77, 203, 204, 210, 211, 388, 389, 439, 440, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NewOrderSingle(quickfix.field.ClOrdID clOrdID, quickfix.field.HandlInst handlInst, quickfix.field.Symbol symbol, quickfix.field.Side side, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(clOrdID);
+ setField(handlInst);
+ setField(symbol);
+ setField(side);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocShares get(quickfix.field.AllocShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocShares getAllocShares() throws FieldNotFound {
+ return get(new quickfix.field.AllocShares());
+ }
+
+ public boolean isSet(quickfix.field.AllocShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocShares() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.Rule80A value) {
+ setField(value);
+ }
+
+ public quickfix.field.Rule80A get(quickfix.field.Rule80A value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Rule80A getRule80A() throws FieldNotFound {
+ return get(new quickfix.field.Rule80A());
+ }
+
+ public boolean isSet(quickfix.field.Rule80A field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRule80A() {
+ return isSetField(47);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.OpenClose value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenClose get(quickfix.field.OpenClose value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenClose getOpenClose() throws FieldNotFound {
+ return get(new quickfix.field.OpenClose());
+ }
+
+ public boolean isSet(quickfix.field.OpenClose field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenClose() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.CustomerOrFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustomerOrFirm get(quickfix.field.CustomerOrFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustomerOrFirm getCustomerOrFirm() throws FieldNotFound {
+ return get(new quickfix.field.CustomerOrFirm());
+ }
+
+ public boolean isSet(quickfix.field.CustomerOrFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustomerOrFirm() {
+ return isSetField(204);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.field.PegDifference value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegDifference get(quickfix.field.PegDifference value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegDifference getPegDifference() throws FieldNotFound {
+ return get(new quickfix.field.PegDifference());
+ }
+
+ public boolean isSet(quickfix.field.PegDifference field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegDifference() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffset value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffset get(quickfix.field.DiscretionOffset value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffset getDiscretionOffset() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffset());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffset field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffset() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.ClearingFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFirm get(quickfix.field.ClearingFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFirm getClearingFirm() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFirm());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFirm() {
+ return isSetField(439);
+ }
+
+ public void set(quickfix.field.ClearingAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingAccount get(quickfix.field.ClearingAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingAccount getClearingAccount() throws FieldNotFound {
+ return get(new quickfix.field.ClearingAccount());
+ }
+
+ public boolean isSet(quickfix.field.ClearingAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingAccount() {
+ return isSetField(440);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/News.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/News.java
new file mode 100644
index 000000000..753143b4b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/News.java
@@ -0,0 +1,794 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class News extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "B";
+
+
+ public News() {
+
+ super(new int[] {42, 61, 148, 358, 359, 215, 146, 33, 149, 95, 96, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public News(quickfix.field.Headline headline) {
+ this();
+ setField(headline);
+ }
+
+ public void set(quickfix.field.OrigTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigTime get(quickfix.field.OrigTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigTime getOrigTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigTime() {
+ return isSetField(42);
+ }
+
+ public void set(quickfix.field.Urgency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Urgency get(quickfix.field.Urgency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Urgency getUrgency() throws FieldNotFound {
+ return get(new quickfix.field.Urgency());
+ }
+
+ public boolean isSet(quickfix.field.Urgency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUrgency() {
+ return isSetField(61);
+ }
+
+ public void set(quickfix.field.Headline value) {
+ setField(value);
+ }
+
+ public quickfix.field.Headline get(quickfix.field.Headline value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Headline getHeadline() throws FieldNotFound {
+ return get(new quickfix.field.Headline());
+ }
+
+ public boolean isSet(quickfix.field.Headline field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHeadline() {
+ return isSetField(148);
+ }
+
+ public void set(quickfix.field.EncodedHeadlineLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedHeadlineLen get(quickfix.field.EncodedHeadlineLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedHeadlineLen getEncodedHeadlineLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedHeadlineLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedHeadlineLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedHeadlineLen() {
+ return isSetField(358);
+ }
+
+ public void set(quickfix.field.EncodedHeadline value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedHeadline get(quickfix.field.EncodedHeadline value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedHeadline getEncodedHeadline() throws FieldNotFound {
+ return get(new quickfix.field.EncodedHeadline());
+ }
+
+ public boolean isSet(quickfix.field.EncodedHeadline field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedHeadline() {
+ return isSetField(359);
+ }
+
+ public void set(quickfix.field.NoRoutingIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRoutingIDs get(quickfix.field.NoRoutingIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRoutingIDs getNoRoutingIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoRoutingIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoRoutingIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRoutingIDs() {
+ return isSetField(215);
+ }
+
+ public static class NoRoutingIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {216, 217, 0};
+
+ public NoRoutingIDs() {
+ super(215, 216, ORDER);
+ }
+
+ public void set(quickfix.field.RoutingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingType get(quickfix.field.RoutingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingType getRoutingType() throws FieldNotFound {
+ return get(new quickfix.field.RoutingType());
+ }
+
+ public boolean isSet(quickfix.field.RoutingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingType() {
+ return isSetField(216);
+ }
+
+ public void set(quickfix.field.RoutingID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingID get(quickfix.field.RoutingID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingID getRoutingID() throws FieldNotFound {
+ return get(new quickfix.field.RoutingID());
+ }
+
+ public boolean isSet(quickfix.field.RoutingID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingID() {
+ return isSetField(217);
+ }
+
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {46, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 0};
+
+ public NoRelatedSym() {
+ super(146, 46, ORDER);
+ }
+
+ public void set(quickfix.field.RelatdSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.RelatdSym get(quickfix.field.RelatdSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RelatdSym getRelatdSym() throws FieldNotFound {
+ return get(new quickfix.field.RelatdSym());
+ }
+
+ public boolean isSet(quickfix.field.RelatdSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRelatdSym() {
+ return isSetField(46);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ }
+
+ public void set(quickfix.field.LinesOfText value) {
+ setField(value);
+ }
+
+ public quickfix.field.LinesOfText get(quickfix.field.LinesOfText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LinesOfText getLinesOfText() throws FieldNotFound {
+ return get(new quickfix.field.LinesOfText());
+ }
+
+ public boolean isSet(quickfix.field.LinesOfText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLinesOfText() {
+ return isSetField(33);
+ }
+
+ public static class LinesOfText extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {58, 354, 355, 0};
+
+ public LinesOfText() {
+ super(33, 58, ORDER);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.field.URLLink value) {
+ setField(value);
+ }
+
+ public quickfix.field.URLLink get(quickfix.field.URLLink value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.URLLink getURLLink() throws FieldNotFound {
+ return get(new quickfix.field.URLLink());
+ }
+
+ public boolean isSet(quickfix.field.URLLink field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetURLLink() {
+ return isSetField(149);
+ }
+
+ public void set(quickfix.field.RawDataLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawDataLength get(quickfix.field.RawDataLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawDataLength getRawDataLength() throws FieldNotFound {
+ return get(new quickfix.field.RawDataLength());
+ }
+
+ public boolean isSet(quickfix.field.RawDataLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawDataLength() {
+ return isSetField(95);
+ }
+
+ public void set(quickfix.field.RawData value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawData get(quickfix.field.RawData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawData getRawData() throws FieldNotFound {
+ return get(new quickfix.field.RawData());
+ }
+
+ public boolean isSet(quickfix.field.RawData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawData() {
+ return isSetField(96);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelReject.java
new file mode 100644
index 000000000..8ca36d1d2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelReject.java
@@ -0,0 +1,344 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class OrderCancelReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "9";
+
+
+ public OrderCancelReject() {
+
+ super(new int[] {37, 198, 11, 41, 39, 109, 76, 66, 1, 60, 434, 102, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderCancelReject(quickfix.field.OrderID orderID, quickfix.field.ClOrdID clOrdID, quickfix.field.OrigClOrdID origClOrdID, quickfix.field.OrdStatus ordStatus, quickfix.field.CxlRejResponseTo cxlRejResponseTo) {
+ this();
+ setField(orderID);
+ setField(clOrdID);
+ setField(origClOrdID);
+ setField(ordStatus);
+ setField(cxlRejResponseTo);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.CxlRejResponseTo value) {
+ setField(value);
+ }
+
+ public quickfix.field.CxlRejResponseTo get(quickfix.field.CxlRejResponseTo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CxlRejResponseTo getCxlRejResponseTo() throws FieldNotFound {
+ return get(new quickfix.field.CxlRejResponseTo());
+ }
+
+ public boolean isSet(quickfix.field.CxlRejResponseTo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCxlRejResponseTo() {
+ return isSetField(434);
+ }
+
+ public void set(quickfix.field.CxlRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.CxlRejReason get(quickfix.field.CxlRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CxlRejReason getCxlRejReason() throws FieldNotFound {
+ return get(new quickfix.field.CxlRejReason());
+ }
+
+ public boolean isSet(quickfix.field.CxlRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCxlRejReason() {
+ return isSetField(102);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelReplaceRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelReplaceRequest.java
new file mode 100644
index 000000000..cd836f9b5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelReplaceRequest.java
@@ -0,0 +1,1587 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderCancelReplaceRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "G";
+
+
+ public OrderCancelReplaceRequest() {
+
+ super(new int[] {37, 109, 76, 41, 11, 66, 1, 78, 63, 64, 21, 18, 110, 111, 100, 386, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 60, 38, 152, 40, 44, 99, 211, 388, 389, 376, 377, 15, 59, 168, 432, 126, 427, 12, 13, 47, 121, 120, 58, 354, 355, 193, 192, 77, 203, 204, 210, 114, 439, 440, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderCancelReplaceRequest(quickfix.field.OrigClOrdID origClOrdID, quickfix.field.ClOrdID clOrdID, quickfix.field.HandlInst handlInst, quickfix.field.Symbol symbol, quickfix.field.Side side, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(origClOrdID);
+ setField(clOrdID);
+ setField(handlInst);
+ setField(symbol);
+ setField(side);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocShares value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocShares get(quickfix.field.AllocShares value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocShares getAllocShares() throws FieldNotFound {
+ return get(new quickfix.field.AllocShares());
+ }
+
+ public boolean isSet(quickfix.field.AllocShares field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocShares() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlmntTyp value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlmntTyp get(quickfix.field.SettlmntTyp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlmntTyp getSettlmntTyp() throws FieldNotFound {
+ return get(new quickfix.field.SettlmntTyp());
+ }
+
+ public boolean isSet(quickfix.field.SettlmntTyp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlmntTyp() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.field.PegDifference value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegDifference get(quickfix.field.PegDifference value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegDifference getPegDifference() throws FieldNotFound {
+ return get(new quickfix.field.PegDifference());
+ }
+
+ public boolean isSet(quickfix.field.PegDifference field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegDifference() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffset value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffset get(quickfix.field.DiscretionOffset value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffset getDiscretionOffset() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffset());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffset field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffset() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.Rule80A value) {
+ setField(value);
+ }
+
+ public quickfix.field.Rule80A get(quickfix.field.Rule80A value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Rule80A getRule80A() throws FieldNotFound {
+ return get(new quickfix.field.Rule80A());
+ }
+
+ public boolean isSet(quickfix.field.Rule80A field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRule80A() {
+ return isSetField(47);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.OpenClose value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenClose get(quickfix.field.OpenClose value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenClose getOpenClose() throws FieldNotFound {
+ return get(new quickfix.field.OpenClose());
+ }
+
+ public boolean isSet(quickfix.field.OpenClose field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenClose() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.CustomerOrFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustomerOrFirm get(quickfix.field.CustomerOrFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustomerOrFirm getCustomerOrFirm() throws FieldNotFound {
+ return get(new quickfix.field.CustomerOrFirm());
+ }
+
+ public boolean isSet(quickfix.field.CustomerOrFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustomerOrFirm() {
+ return isSetField(204);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.ClearingFirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFirm get(quickfix.field.ClearingFirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFirm getClearingFirm() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFirm());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFirm() {
+ return isSetField(439);
+ }
+
+ public void set(quickfix.field.ClearingAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingAccount get(quickfix.field.ClearingAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingAccount getClearingAccount() throws FieldNotFound {
+ return get(new quickfix.field.ClearingAccount());
+ }
+
+ public boolean isSet(quickfix.field.ClearingAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingAccount() {
+ return isSetField(440);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelRequest.java
new file mode 100644
index 000000000..611599b77
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderCancelRequest.java
@@ -0,0 +1,764 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class OrderCancelRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "F";
+
+
+ public OrderCancelRequest() {
+
+ super(new int[] {41, 37, 11, 66, 1, 109, 76, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 60, 38, 152, 376, 377, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderCancelRequest(quickfix.field.OrigClOrdID origClOrdID, quickfix.field.ClOrdID clOrdID, quickfix.field.Symbol symbol, quickfix.field.Side side, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(origClOrdID);
+ setField(clOrdID);
+ setField(symbol);
+ setField(side);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderStatusRequest.java
new file mode 100644
index 000000000..1050def41
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/OrderStatusRequest.java
@@ -0,0 +1,552 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class OrderStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "H";
+
+
+ public OrderStatusRequest() {
+
+ super(new int[] {37, 11, 109, 1, 76, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderStatusRequest(quickfix.field.ClOrdID clOrdID, quickfix.field.Symbol symbol, quickfix.field.Side side) {
+ this();
+ setField(clOrdID);
+ setField(symbol);
+ setField(side);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Quote.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Quote.java
new file mode 100644
index 000000000..ab77d239d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Quote.java
@@ -0,0 +1,824 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class Quote extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "S";
+
+
+ public Quote() {
+
+ super(new int[] {131, 117, 301, 336, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 132, 133, 134, 135, 62, 188, 190, 189, 191, 60, 64, 40, 193, 192, 15, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Quote(quickfix.field.QuoteID quoteID, quickfix.field.Symbol symbol) {
+ this();
+ setField(quoteID);
+ setField(symbol);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteAcknowledgement.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteAcknowledgement.java
new file mode 100644
index 000000000..12034d70c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteAcknowledgement.java
@@ -0,0 +1,1119 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteAcknowledgement extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "b";
+
+
+ public QuoteAcknowledgement() {
+
+ super(new int[] {131, 117, 297, 300, 301, 336, 58, 296, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteAcknowledgement(quickfix.field.QuoteAckStatus quoteAckStatus) {
+ this();
+ setField(quoteAckStatus);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteAckStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteAckStatus get(quickfix.field.QuoteAckStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteAckStatus getQuoteAckStatus() throws FieldNotFound {
+ return get(new quickfix.field.QuoteAckStatus());
+ }
+
+ public boolean isSet(quickfix.field.QuoteAckStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteAckStatus() {
+ return isSetField(297);
+ }
+
+ public void set(quickfix.field.QuoteRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRejectReason get(quickfix.field.QuoteRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRejectReason getQuoteRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRejectReason() {
+ return isSetField(300);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.NoQuoteSets value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteSets get(quickfix.field.NoQuoteSets value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteSets getNoQuoteSets() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteSets());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteSets field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteSets() {
+ return isSetField(296);
+ }
+
+ public static class NoQuoteSets extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {302, 311, 312, 309, 305, 310, 313, 314, 315, 316, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 304, 295, 0};
+
+ public NoQuoteSets() {
+ super(296, 302, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteSetID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteSetID get(quickfix.field.QuoteSetID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteSetID getQuoteSetID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteSetID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteSetID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteSetID() {
+ return isSetField(302);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIDSource get(quickfix.field.UnderlyingIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIDSource getUnderlyingIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDay get(quickfix.field.UnderlyingMaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDay getUnderlyingMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDay() {
+ return isSetField(314);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.TotQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotQuoteEntries get(quickfix.field.TotQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotQuoteEntries getTotQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.TotQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.TotQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotQuoteEntries() {
+ return isSetField(304);
+ }
+
+ public void set(quickfix.field.NoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteEntries get(quickfix.field.NoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteEntries getNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteEntries() {
+ return isSetField(295);
+ }
+
+ public static class NoQuoteEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {299, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 368, 0};
+
+ public NoQuoteEntries() {
+ super(295, 299, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.QuoteEntryRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryRejectReason get(quickfix.field.QuoteEntryRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryRejectReason getQuoteEntryRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryRejectReason() {
+ return isSetField(368);
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteCancel.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteCancel.java
new file mode 100644
index 000000000..92b65147c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteCancel.java
@@ -0,0 +1,584 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteCancel extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "Z";
+
+
+ public QuoteCancel() {
+
+ super(new int[] {131, 117, 298, 301, 336, 295, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteCancel(quickfix.field.QuoteID quoteID, quickfix.field.QuoteCancelType quoteCancelType) {
+ this();
+ setField(quoteID);
+ setField(quoteCancelType);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteCancelType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteCancelType get(quickfix.field.QuoteCancelType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteCancelType getQuoteCancelType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteCancelType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteCancelType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteCancelType() {
+ return isSetField(298);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.NoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteEntries get(quickfix.field.NoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteEntries getNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteEntries() {
+ return isSetField(295);
+ }
+
+ public static class NoQuoteEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 311, 0};
+
+ public NoQuoteEntries() {
+ super(295, 55, ORDER);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteRequest.java
new file mode 100644
index 000000000..a55402b9a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteRequest.java
@@ -0,0 +1,730 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "R";
+
+
+ public QuoteRequest() {
+
+ super(new int[] {131, 146, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteRequest(quickfix.field.QuoteReqID quoteReqID) {
+ this();
+ setField(quoteReqID);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 140, 303, 336, 54, 38, 64, 40, 193, 192, 126, 60, 15, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.QuoteRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRequestType get(quickfix.field.QuoteRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRequestType getQuoteRequestType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRequestType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRequestType() {
+ return isSetField(303);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.FutSettDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate get(quickfix.field.FutSettDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate getFutSettDate() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.FutSettDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.FutSettDate2 get(quickfix.field.FutSettDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FutSettDate2 getFutSettDate2() throws FieldNotFound {
+ return get(new quickfix.field.FutSettDate2());
+ }
+
+ public boolean isSet(quickfix.field.FutSettDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFutSettDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteStatusRequest.java
new file mode 100644
index 000000000..ea0601da0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/QuoteStatusRequest.java
@@ -0,0 +1,487 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class QuoteStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "a";
+
+
+ public QuoteStatusRequest() {
+
+ super(new int[] {117, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 54, 336, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteStatusRequest(quickfix.field.Symbol symbol) {
+ this();
+ setField(symbol);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Reject.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Reject.java
new file mode 100644
index 000000000..357de2c3a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/Reject.java
@@ -0,0 +1,172 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class Reject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "3";
+
+
+ public Reject() {
+
+ super(new int[] {45, 371, 372, 373, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Reject(quickfix.field.RefSeqNum refSeqNum) {
+ this();
+ setField(refSeqNum);
+ }
+
+ public void set(quickfix.field.RefSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefSeqNum get(quickfix.field.RefSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefSeqNum getRefSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.RefSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.RefSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefSeqNum() {
+ return isSetField(45);
+ }
+
+ public void set(quickfix.field.RefTagID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefTagID get(quickfix.field.RefTagID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefTagID getRefTagID() throws FieldNotFound {
+ return get(new quickfix.field.RefTagID());
+ }
+
+ public boolean isSet(quickfix.field.RefTagID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefTagID() {
+ return isSetField(371);
+ }
+
+ public void set(quickfix.field.RefMsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefMsgType get(quickfix.field.RefMsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefMsgType getRefMsgType() throws FieldNotFound {
+ return get(new quickfix.field.RefMsgType());
+ }
+
+ public boolean isSet(quickfix.field.RefMsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefMsgType() {
+ return isSetField(372);
+ }
+
+ public void set(quickfix.field.SessionRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.SessionRejectReason get(quickfix.field.SessionRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SessionRejectReason getSessionRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.SessionRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.SessionRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSessionRejectReason() {
+ return isSetField(373);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ResendRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ResendRequest.java
new file mode 100644
index 000000000..aa9848f68
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/ResendRequest.java
@@ -0,0 +1,68 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class ResendRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "2";
+
+
+ public ResendRequest() {
+
+ super(new int[] {7, 16, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ResendRequest(quickfix.field.BeginSeqNo beginSeqNo, quickfix.field.EndSeqNo endSeqNo) {
+ this();
+ setField(beginSeqNo);
+ setField(endSeqNo);
+ }
+
+ public void set(quickfix.field.BeginSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.BeginSeqNo get(quickfix.field.BeginSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BeginSeqNo getBeginSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.BeginSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.BeginSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBeginSeqNo() {
+ return isSetField(7);
+ }
+
+ public void set(quickfix.field.EndSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndSeqNo get(quickfix.field.EndSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndSeqNo getEndSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.EndSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.EndSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndSeqNo() {
+ return isSetField(16);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityDefinition.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityDefinition.java
new file mode 100644
index 000000000..e88ad6570
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityDefinition.java
@@ -0,0 +1,1110 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityDefinition extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "d";
+
+
+ public SecurityDefinition() {
+
+ super(new int[] {320, 322, 323, 393, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 15, 336, 58, 354, 355, 146, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityDefinition(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityResponseID securityResponseID, quickfix.field.TotalNumSecurities totalNumSecurities) {
+ this();
+ setField(securityReqID);
+ setField(securityResponseID);
+ setField(totalNumSecurities);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseID get(quickfix.field.SecurityResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseID getSecurityResponseID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseID() {
+ return isSetField(322);
+ }
+
+ public void set(quickfix.field.SecurityResponseType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseType get(quickfix.field.SecurityResponseType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseType getSecurityResponseType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseType() {
+ return isSetField(323);
+ }
+
+ public void set(quickfix.field.TotalNumSecurities value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNumSecurities get(quickfix.field.TotalNumSecurities value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNumSecurities getTotalNumSecurities() throws FieldNotFound {
+ return get(new quickfix.field.TotalNumSecurities());
+ }
+
+ public boolean isSet(quickfix.field.TotalNumSecurities field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNumSecurities() {
+ return isSetField(393);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 310, 313, 314, 315, 316, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 319, 54, 318, 0};
+
+ public NoRelatedSym() {
+ super(146, 311, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIDSource get(quickfix.field.UnderlyingIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIDSource getUnderlyingIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDay get(quickfix.field.UnderlyingMaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDay getUnderlyingMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDay() {
+ return isSetField(314);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.RatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.RatioQty get(quickfix.field.RatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RatioQty getRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.RatioQty());
+ }
+
+ public boolean isSet(quickfix.field.RatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRatioQty() {
+ return isSetField(319);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityDefinitionRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityDefinitionRequest.java
new file mode 100644
index 000000000..9a7f9df8a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityDefinitionRequest.java
@@ -0,0 +1,1067 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityDefinitionRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "c";
+
+
+ public SecurityDefinitionRequest() {
+
+ super(new int[] {320, 321, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 15, 58, 354, 355, 336, 146, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityDefinitionRequest(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityRequestType securityRequestType) {
+ this();
+ setField(securityReqID);
+ setField(securityRequestType);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityRequestType get(quickfix.field.SecurityRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityRequestType getSecurityRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityRequestType() {
+ return isSetField(321);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 310, 313, 314, 315, 316, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 319, 54, 318, 0};
+
+ public NoRelatedSym() {
+ super(146, 311, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIDSource get(quickfix.field.UnderlyingIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIDSource getUnderlyingIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDay get(quickfix.field.UnderlyingMaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDay getUnderlyingMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDay() {
+ return isSetField(314);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.RatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.RatioQty get(quickfix.field.RatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RatioQty getRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.RatioQty());
+ }
+
+ public boolean isSet(quickfix.field.RatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRatioQty() {
+ return isSetField(319);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityStatus.java
new file mode 100644
index 000000000..462974054
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityStatus.java
@@ -0,0 +1,781 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class SecurityStatus extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "f";
+
+
+ public SecurityStatus() {
+
+ super(new int[] {324, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 15, 336, 325, 326, 291, 292, 327, 328, 329, 330, 331, 332, 333, 31, 60, 334, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityStatus(quickfix.field.Symbol symbol) {
+ this();
+ setField(symbol);
+ }
+
+ public void set(quickfix.field.SecurityStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityStatusReqID get(quickfix.field.SecurityStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityStatusReqID getSecurityStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityStatusReqID() {
+ return isSetField(324);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.UnsolicitedIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnsolicitedIndicator get(quickfix.field.UnsolicitedIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnsolicitedIndicator getUnsolicitedIndicator() throws FieldNotFound {
+ return get(new quickfix.field.UnsolicitedIndicator());
+ }
+
+ public boolean isSet(quickfix.field.UnsolicitedIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnsolicitedIndicator() {
+ return isSetField(325);
+ }
+
+ public void set(quickfix.field.SecurityTradingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityTradingStatus get(quickfix.field.SecurityTradingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityTradingStatus getSecurityTradingStatus() throws FieldNotFound {
+ return get(new quickfix.field.SecurityTradingStatus());
+ }
+
+ public boolean isSet(quickfix.field.SecurityTradingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityTradingStatus() {
+ return isSetField(326);
+ }
+
+ public void set(quickfix.field.FinancialStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.FinancialStatus get(quickfix.field.FinancialStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FinancialStatus getFinancialStatus() throws FieldNotFound {
+ return get(new quickfix.field.FinancialStatus());
+ }
+
+ public boolean isSet(quickfix.field.FinancialStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFinancialStatus() {
+ return isSetField(291);
+ }
+
+ public void set(quickfix.field.CorporateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CorporateAction get(quickfix.field.CorporateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CorporateAction getCorporateAction() throws FieldNotFound {
+ return get(new quickfix.field.CorporateAction());
+ }
+
+ public boolean isSet(quickfix.field.CorporateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCorporateAction() {
+ return isSetField(292);
+ }
+
+ public void set(quickfix.field.HaltReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.HaltReason get(quickfix.field.HaltReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HaltReason getHaltReason() throws FieldNotFound {
+ return get(new quickfix.field.HaltReason());
+ }
+
+ public boolean isSet(quickfix.field.HaltReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHaltReason() {
+ return isSetField(327);
+ }
+
+ public void set(quickfix.field.InViewOfCommon value) {
+ setField(value);
+ }
+
+ public quickfix.field.InViewOfCommon get(quickfix.field.InViewOfCommon value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InViewOfCommon getInViewOfCommon() throws FieldNotFound {
+ return get(new quickfix.field.InViewOfCommon());
+ }
+
+ public boolean isSet(quickfix.field.InViewOfCommon field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInViewOfCommon() {
+ return isSetField(328);
+ }
+
+ public void set(quickfix.field.DueToRelated value) {
+ setField(value);
+ }
+
+ public quickfix.field.DueToRelated get(quickfix.field.DueToRelated value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DueToRelated getDueToRelated() throws FieldNotFound {
+ return get(new quickfix.field.DueToRelated());
+ }
+
+ public boolean isSet(quickfix.field.DueToRelated field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDueToRelated() {
+ return isSetField(329);
+ }
+
+ public void set(quickfix.field.BuyVolume value) {
+ setField(value);
+ }
+
+ public quickfix.field.BuyVolume get(quickfix.field.BuyVolume value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BuyVolume getBuyVolume() throws FieldNotFound {
+ return get(new quickfix.field.BuyVolume());
+ }
+
+ public boolean isSet(quickfix.field.BuyVolume field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBuyVolume() {
+ return isSetField(330);
+ }
+
+ public void set(quickfix.field.SellVolume value) {
+ setField(value);
+ }
+
+ public quickfix.field.SellVolume get(quickfix.field.SellVolume value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SellVolume getSellVolume() throws FieldNotFound {
+ return get(new quickfix.field.SellVolume());
+ }
+
+ public boolean isSet(quickfix.field.SellVolume field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSellVolume() {
+ return isSetField(331);
+ }
+
+ public void set(quickfix.field.HighPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.HighPx get(quickfix.field.HighPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HighPx getHighPx() throws FieldNotFound {
+ return get(new quickfix.field.HighPx());
+ }
+
+ public boolean isSet(quickfix.field.HighPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHighPx() {
+ return isSetField(332);
+ }
+
+ public void set(quickfix.field.LowPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LowPx get(quickfix.field.LowPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LowPx getLowPx() throws FieldNotFound {
+ return get(new quickfix.field.LowPx());
+ }
+
+ public boolean isSet(quickfix.field.LowPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLowPx() {
+ return isSetField(333);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Adjustment value) {
+ setField(value);
+ }
+
+ public quickfix.field.Adjustment get(quickfix.field.Adjustment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Adjustment getAdjustment() throws FieldNotFound {
+ return get(new quickfix.field.Adjustment());
+ }
+
+ public boolean isSet(quickfix.field.Adjustment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdjustment() {
+ return isSetField(334);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityStatusRequest.java
new file mode 100644
index 000000000..d57937f24
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SecurityStatusRequest.java
@@ -0,0 +1,510 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class SecurityStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "e";
+
+
+ public SecurityStatusRequest() {
+
+ super(new int[] {324, 55, 65, 48, 22, 167, 200, 205, 201, 202, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 15, 263, 336, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityStatusRequest(quickfix.field.SecurityStatusReqID securityStatusReqID, quickfix.field.Symbol symbol, quickfix.field.SubscriptionRequestType subscriptionRequestType) {
+ this();
+ setField(securityStatusReqID);
+ setField(symbol);
+ setField(subscriptionRequestType);
+ }
+
+ public void set(quickfix.field.SecurityStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityStatusReqID get(quickfix.field.SecurityStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityStatusReqID getSecurityStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityStatusReqID() {
+ return isSetField(324);
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.IDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.IDSource get(quickfix.field.IDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IDSource getIDSource() throws FieldNotFound {
+ return get(new quickfix.field.IDSource());
+ }
+
+ public boolean isSet(quickfix.field.IDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDay get(quickfix.field.MaturityDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDay getMaturityDay() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDay());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDay() {
+ return isSetField(205);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SequenceReset.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SequenceReset.java
new file mode 100644
index 000000000..553b4d6f5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SequenceReset.java
@@ -0,0 +1,67 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class SequenceReset extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "4";
+
+
+ public SequenceReset() {
+
+ super(new int[] {123, 36, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SequenceReset(quickfix.field.NewSeqNo newSeqNo) {
+ this();
+ setField(newSeqNo);
+ }
+
+ public void set(quickfix.field.GapFillFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.GapFillFlag get(quickfix.field.GapFillFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GapFillFlag getGapFillFlag() throws FieldNotFound {
+ return get(new quickfix.field.GapFillFlag());
+ }
+
+ public boolean isSet(quickfix.field.GapFillFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGapFillFlag() {
+ return isSetField(123);
+ }
+
+ public void set(quickfix.field.NewSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.NewSeqNo get(quickfix.field.NewSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NewSeqNo getNewSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.NewSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.NewSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNewSeqNo() {
+ return isSetField(36);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SettlementInstructions.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SettlementInstructions.java
new file mode 100644
index 000000000..90e669713
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/SettlementInstructions.java
@@ -0,0 +1,787 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class SettlementInstructions extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "T";
+
+
+ public SettlementInstructions() {
+
+ super(new int[] {162, 163, 214, 160, 165, 79, 166, 75, 70, 30, 336, 54, 167, 168, 60, 109, 76, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SettlementInstructions(quickfix.field.SettlInstID settlInstID, quickfix.field.SettlInstTransType settlInstTransType, quickfix.field.SettlInstRefID settlInstRefID, quickfix.field.SettlInstMode settlInstMode, quickfix.field.SettlInstSource settlInstSource, quickfix.field.AllocAccount allocAccount, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(settlInstID);
+ setField(settlInstTransType);
+ setField(settlInstRefID);
+ setField(settlInstMode);
+ setField(settlInstSource);
+ setField(allocAccount);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.SettlInstID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstID get(quickfix.field.SettlInstID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstID getSettlInstID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstID() {
+ return isSetField(162);
+ }
+
+ public void set(quickfix.field.SettlInstTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstTransType get(quickfix.field.SettlInstTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstTransType getSettlInstTransType() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstTransType());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstTransType() {
+ return isSetField(163);
+ }
+
+ public void set(quickfix.field.SettlInstRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstRefID get(quickfix.field.SettlInstRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstRefID getSettlInstRefID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstRefID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstRefID() {
+ return isSetField(214);
+ }
+
+ public void set(quickfix.field.SettlInstMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMode get(quickfix.field.SettlInstMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMode getSettlInstMode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMode() {
+ return isSetField(160);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.SettlLocation value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlLocation get(quickfix.field.SettlLocation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlLocation getSettlLocation() throws FieldNotFound {
+ return get(new quickfix.field.SettlLocation());
+ }
+
+ public boolean isSet(quickfix.field.SettlLocation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlLocation() {
+ return isSetField(166);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.ClientID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientID get(quickfix.field.ClientID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientID getClientID() throws FieldNotFound {
+ return get(new quickfix.field.ClientID());
+ }
+
+ public boolean isSet(quickfix.field.ClientID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientID() {
+ return isSetField(109);
+ }
+
+ public void set(quickfix.field.ExecBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecBroker get(quickfix.field.ExecBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecBroker getExecBroker() throws FieldNotFound {
+ return get(new quickfix.field.ExecBroker());
+ }
+
+ public boolean isSet(quickfix.field.ExecBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecBroker() {
+ return isSetField(76);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.SettlDepositoryCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDepositoryCode get(quickfix.field.SettlDepositoryCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDepositoryCode getSettlDepositoryCode() throws FieldNotFound {
+ return get(new quickfix.field.SettlDepositoryCode());
+ }
+
+ public boolean isSet(quickfix.field.SettlDepositoryCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDepositoryCode() {
+ return isSetField(173);
+ }
+
+ public void set(quickfix.field.SettlBrkrCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlBrkrCode get(quickfix.field.SettlBrkrCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlBrkrCode getSettlBrkrCode() throws FieldNotFound {
+ return get(new quickfix.field.SettlBrkrCode());
+ }
+
+ public boolean isSet(quickfix.field.SettlBrkrCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlBrkrCode() {
+ return isSetField(174);
+ }
+
+ public void set(quickfix.field.SettlInstCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstCode get(quickfix.field.SettlInstCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstCode getSettlInstCode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstCode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstCode() {
+ return isSetField(175);
+ }
+
+ public void set(quickfix.field.SecuritySettlAgentName value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySettlAgentName get(quickfix.field.SecuritySettlAgentName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySettlAgentName getSecuritySettlAgentName() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySettlAgentName());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySettlAgentName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySettlAgentName() {
+ return isSetField(176);
+ }
+
+ public void set(quickfix.field.SecuritySettlAgentCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySettlAgentCode get(quickfix.field.SecuritySettlAgentCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySettlAgentCode getSecuritySettlAgentCode() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySettlAgentCode());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySettlAgentCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySettlAgentCode() {
+ return isSetField(177);
+ }
+
+ public void set(quickfix.field.SecuritySettlAgentAcctNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySettlAgentAcctNum get(quickfix.field.SecuritySettlAgentAcctNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySettlAgentAcctNum getSecuritySettlAgentAcctNum() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySettlAgentAcctNum());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySettlAgentAcctNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySettlAgentAcctNum() {
+ return isSetField(178);
+ }
+
+ public void set(quickfix.field.SecuritySettlAgentAcctName value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySettlAgentAcctName get(quickfix.field.SecuritySettlAgentAcctName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySettlAgentAcctName getSecuritySettlAgentAcctName() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySettlAgentAcctName());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySettlAgentAcctName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySettlAgentAcctName() {
+ return isSetField(179);
+ }
+
+ public void set(quickfix.field.SecuritySettlAgentContactName value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySettlAgentContactName get(quickfix.field.SecuritySettlAgentContactName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySettlAgentContactName getSecuritySettlAgentContactName() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySettlAgentContactName());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySettlAgentContactName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySettlAgentContactName() {
+ return isSetField(180);
+ }
+
+ public void set(quickfix.field.SecuritySettlAgentContactPhone value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySettlAgentContactPhone get(quickfix.field.SecuritySettlAgentContactPhone value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySettlAgentContactPhone getSecuritySettlAgentContactPhone() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySettlAgentContactPhone());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySettlAgentContactPhone field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySettlAgentContactPhone() {
+ return isSetField(181);
+ }
+
+ public void set(quickfix.field.CashSettlAgentName value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashSettlAgentName get(quickfix.field.CashSettlAgentName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashSettlAgentName getCashSettlAgentName() throws FieldNotFound {
+ return get(new quickfix.field.CashSettlAgentName());
+ }
+
+ public boolean isSet(quickfix.field.CashSettlAgentName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashSettlAgentName() {
+ return isSetField(182);
+ }
+
+ public void set(quickfix.field.CashSettlAgentCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashSettlAgentCode get(quickfix.field.CashSettlAgentCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashSettlAgentCode getCashSettlAgentCode() throws FieldNotFound {
+ return get(new quickfix.field.CashSettlAgentCode());
+ }
+
+ public boolean isSet(quickfix.field.CashSettlAgentCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashSettlAgentCode() {
+ return isSetField(183);
+ }
+
+ public void set(quickfix.field.CashSettlAgentAcctNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashSettlAgentAcctNum get(quickfix.field.CashSettlAgentAcctNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashSettlAgentAcctNum getCashSettlAgentAcctNum() throws FieldNotFound {
+ return get(new quickfix.field.CashSettlAgentAcctNum());
+ }
+
+ public boolean isSet(quickfix.field.CashSettlAgentAcctNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashSettlAgentAcctNum() {
+ return isSetField(184);
+ }
+
+ public void set(quickfix.field.CashSettlAgentAcctName value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashSettlAgentAcctName get(quickfix.field.CashSettlAgentAcctName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashSettlAgentAcctName getCashSettlAgentAcctName() throws FieldNotFound {
+ return get(new quickfix.field.CashSettlAgentAcctName());
+ }
+
+ public boolean isSet(quickfix.field.CashSettlAgentAcctName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashSettlAgentAcctName() {
+ return isSetField(185);
+ }
+
+ public void set(quickfix.field.CashSettlAgentContactName value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashSettlAgentContactName get(quickfix.field.CashSettlAgentContactName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashSettlAgentContactName getCashSettlAgentContactName() throws FieldNotFound {
+ return get(new quickfix.field.CashSettlAgentContactName());
+ }
+
+ public boolean isSet(quickfix.field.CashSettlAgentContactName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashSettlAgentContactName() {
+ return isSetField(186);
+ }
+
+ public void set(quickfix.field.CashSettlAgentContactPhone value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashSettlAgentContactPhone get(quickfix.field.CashSettlAgentContactPhone value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashSettlAgentContactPhone getCashSettlAgentContactPhone() throws FieldNotFound {
+ return get(new quickfix.field.CashSettlAgentContactPhone());
+ }
+
+ public boolean isSet(quickfix.field.CashSettlAgentContactPhone field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashSettlAgentContactPhone() {
+ return isSetField(187);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TestRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TestRequest.java
new file mode 100644
index 000000000..e10891bcc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TestRequest.java
@@ -0,0 +1,46 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class TestRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "1";
+
+
+ public TestRequest() {
+
+ super(new int[] {112, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TestRequest(quickfix.field.TestReqID testReqID) {
+ this();
+ setField(testReqID);
+ }
+
+ public void set(quickfix.field.TestReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TestReqID get(quickfix.field.TestReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TestReqID getTestReqID() throws FieldNotFound {
+ return get(new quickfix.field.TestReqID());
+ }
+
+ public boolean isSet(quickfix.field.TestReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTestReqID() {
+ return isSetField(112);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TradingSessionStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TradingSessionStatus.java
new file mode 100644
index 000000000..2711d76cb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TradingSessionStatus.java
@@ -0,0 +1,341 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class TradingSessionStatus extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "h";
+
+
+ public TradingSessionStatus() {
+
+ super(new int[] {335, 336, 338, 339, 325, 340, 341, 342, 343, 344, 345, 387, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TradingSessionStatus(quickfix.field.TradingSessionID tradingSessionID, quickfix.field.TradSesStatus tradSesStatus) {
+ this();
+ setField(tradingSessionID);
+ setField(tradSesStatus);
+ }
+
+ public void set(quickfix.field.TradSesReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesReqID get(quickfix.field.TradSesReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesReqID getTradSesReqID() throws FieldNotFound {
+ return get(new quickfix.field.TradSesReqID());
+ }
+
+ public boolean isSet(quickfix.field.TradSesReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesReqID() {
+ return isSetField(335);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradSesMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesMethod get(quickfix.field.TradSesMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesMethod getTradSesMethod() throws FieldNotFound {
+ return get(new quickfix.field.TradSesMethod());
+ }
+
+ public boolean isSet(quickfix.field.TradSesMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesMethod() {
+ return isSetField(338);
+ }
+
+ public void set(quickfix.field.TradSesMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesMode get(quickfix.field.TradSesMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesMode getTradSesMode() throws FieldNotFound {
+ return get(new quickfix.field.TradSesMode());
+ }
+
+ public boolean isSet(quickfix.field.TradSesMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesMode() {
+ return isSetField(339);
+ }
+
+ public void set(quickfix.field.UnsolicitedIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnsolicitedIndicator get(quickfix.field.UnsolicitedIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnsolicitedIndicator getUnsolicitedIndicator() throws FieldNotFound {
+ return get(new quickfix.field.UnsolicitedIndicator());
+ }
+
+ public boolean isSet(quickfix.field.UnsolicitedIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnsolicitedIndicator() {
+ return isSetField(325);
+ }
+
+ public void set(quickfix.field.TradSesStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesStatus get(quickfix.field.TradSesStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesStatus getTradSesStatus() throws FieldNotFound {
+ return get(new quickfix.field.TradSesStatus());
+ }
+
+ public boolean isSet(quickfix.field.TradSesStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesStatus() {
+ return isSetField(340);
+ }
+
+ public void set(quickfix.field.TradSesStartTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesStartTime get(quickfix.field.TradSesStartTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesStartTime getTradSesStartTime() throws FieldNotFound {
+ return get(new quickfix.field.TradSesStartTime());
+ }
+
+ public boolean isSet(quickfix.field.TradSesStartTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesStartTime() {
+ return isSetField(341);
+ }
+
+ public void set(quickfix.field.TradSesOpenTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesOpenTime get(quickfix.field.TradSesOpenTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesOpenTime getTradSesOpenTime() throws FieldNotFound {
+ return get(new quickfix.field.TradSesOpenTime());
+ }
+
+ public boolean isSet(quickfix.field.TradSesOpenTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesOpenTime() {
+ return isSetField(342);
+ }
+
+ public void set(quickfix.field.TradSesPreCloseTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesPreCloseTime get(quickfix.field.TradSesPreCloseTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesPreCloseTime getTradSesPreCloseTime() throws FieldNotFound {
+ return get(new quickfix.field.TradSesPreCloseTime());
+ }
+
+ public boolean isSet(quickfix.field.TradSesPreCloseTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesPreCloseTime() {
+ return isSetField(343);
+ }
+
+ public void set(quickfix.field.TradSesCloseTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesCloseTime get(quickfix.field.TradSesCloseTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesCloseTime getTradSesCloseTime() throws FieldNotFound {
+ return get(new quickfix.field.TradSesCloseTime());
+ }
+
+ public boolean isSet(quickfix.field.TradSesCloseTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesCloseTime() {
+ return isSetField(344);
+ }
+
+ public void set(quickfix.field.TradSesEndTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesEndTime get(quickfix.field.TradSesEndTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesEndTime getTradSesEndTime() throws FieldNotFound {
+ return get(new quickfix.field.TradSesEndTime());
+ }
+
+ public boolean isSet(quickfix.field.TradSesEndTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesEndTime() {
+ return isSetField(345);
+ }
+
+ public void set(quickfix.field.TotalVolumeTraded value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalVolumeTraded get(quickfix.field.TotalVolumeTraded value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalVolumeTraded getTotalVolumeTraded() throws FieldNotFound {
+ return get(new quickfix.field.TotalVolumeTraded());
+ }
+
+ public boolean isSet(quickfix.field.TotalVolumeTraded field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalVolumeTraded() {
+ return isSetField(387);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TradingSessionStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TradingSessionStatusRequest.java
new file mode 100644
index 000000000..04c89b276
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/TradingSessionStatusRequest.java
@@ -0,0 +1,131 @@
+
+package quickfix.fix42;
+
+import quickfix.FieldNotFound;
+
+
+public class TradingSessionStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "g";
+
+
+ public TradingSessionStatusRequest() {
+
+ super(new int[] {335, 336, 338, 339, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TradingSessionStatusRequest(quickfix.field.TradSesReqID tradSesReqID, quickfix.field.SubscriptionRequestType subscriptionRequestType) {
+ this();
+ setField(tradSesReqID);
+ setField(subscriptionRequestType);
+ }
+
+ public void set(quickfix.field.TradSesReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesReqID get(quickfix.field.TradSesReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesReqID getTradSesReqID() throws FieldNotFound {
+ return get(new quickfix.field.TradSesReqID());
+ }
+
+ public boolean isSet(quickfix.field.TradSesReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesReqID() {
+ return isSetField(335);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradSesMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesMethod get(quickfix.field.TradSesMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesMethod getTradSesMethod() throws FieldNotFound {
+ return get(new quickfix.field.TradSesMethod());
+ }
+
+ public boolean isSet(quickfix.field.TradSesMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesMethod() {
+ return isSetField(338);
+ }
+
+ public void set(quickfix.field.TradSesMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradSesMode get(quickfix.field.TradSesMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradSesMode getTradSesMode() throws FieldNotFound {
+ return get(new quickfix.field.TradSesMode());
+ }
+
+ public boolean isSet(quickfix.field.TradSesMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradSesMode() {
+ return isSetField(339);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/package.html b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/package.html
new file mode 100644
index 000000000..46c7b8d61
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix42/quickfix/fix42/package.html
@@ -0,0 +1,4 @@
+
+
+Message classes
+
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Account.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Account.java
new file mode 100644
index 000000000..14589457e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Account.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Account extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 1;
+
+ public Account() {
+ super(1);
+ }
+
+ public Account(String data) {
+ super(1, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccountType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccountType.java
new file mode 100644
index 000000000..471592937
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccountType.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AccountType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 581;
+ public static final int ACCOUNT_IS_CARRIED_ON_CUSTOMER_SIDE_OF_BOOKS = 1;
+ public static final int ACCOUNT_IS_CARRIED_ON_NON_CUSTOMER_SIDE_OF_BOOKS = 2;
+ public static final int HOUSE_TRADER = 3;
+ public static final int FLOOR_TRADER = 4;
+ public static final int ACCOUNT_IS_CARRIED_ON_NON_CUSTOMER_SIDE_OF_BOOKS_AND_IS_CROSS_MARGINED = 6;
+ public static final int ACCOUNT_IS_HOUSE_TRADER_AND_IS_CROSS_MARGINED = 7;
+ public static final int JOINT_BACKOFFICE_ACCOUNT = 8;
+
+ public AccountType() {
+ super(581);
+ }
+
+ public AccountType(int data) {
+ super(581, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccruedInterestAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccruedInterestAmt.java
new file mode 100644
index 000000000..8f2472535
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccruedInterestAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AccruedInterestAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 159;
+
+ public AccruedInterestAmt() {
+ super(159);
+ }
+
+ public AccruedInterestAmt(java.math.BigDecimal data) {
+ super(159, data);
+ }
+
+ public AccruedInterestAmt(double data) {
+ super(159, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccruedInterestRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccruedInterestRate.java
new file mode 100644
index 000000000..c9ffda7c3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AccruedInterestRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class AccruedInterestRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 158;
+
+ public AccruedInterestRate() {
+ super(158);
+ }
+
+ public AccruedInterestRate(double data) {
+ super(158, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AcctIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AcctIDSource.java
new file mode 100644
index 000000000..423416a29
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AcctIDSource.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AcctIDSource extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 660;
+ public static final int BIC = 1;
+ public static final int SID_CODE = 2;
+ public static final int TFM = 3;
+ public static final int OMGEO = 4;
+ public static final int DTCC_CODE = 5;
+ public static final int OTHER = 99;
+
+ public AcctIDSource() {
+ super(660);
+ }
+
+ public AcctIDSource(int data) {
+ super(660, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Adjustment.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Adjustment.java
new file mode 100644
index 000000000..8f485b017
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Adjustment.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Adjustment extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 334;
+ public static final int CANCEL = 1;
+ public static final int ERROR = 2;
+ public static final int CORRECTION = 3;
+
+ public Adjustment() {
+ super(334);
+ }
+
+ public Adjustment(int data) {
+ super(334, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdjustmentType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdjustmentType.java
new file mode 100644
index 000000000..b80bea634
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdjustmentType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AdjustmentType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 718;
+ public static final int PROCESS_REQUEST_AS_MARGIN_DISPOSITION = 0;
+ public static final int DELTA_PLUS = 1;
+ public static final int DELTA_MINUS = 2;
+ public static final int FINAL = 3;
+
+ public AdjustmentType() {
+ super(718);
+ }
+
+ public AdjustmentType(int data) {
+ super(718, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvId.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvId.java
new file mode 100644
index 000000000..727f390c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvId.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AdvId extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 2;
+
+ public AdvId() {
+ super(2);
+ }
+
+ public AdvId(String data) {
+ super(2, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvRefID.java
new file mode 100644
index 000000000..47c28c292
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AdvRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 3;
+
+ public AdvRefID() {
+ super(3);
+ }
+
+ public AdvRefID(String data) {
+ super(3, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvSide.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvSide.java
new file mode 100644
index 000000000..14f271ccd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvSide.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class AdvSide extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 4;
+ public static final char BUY = 'B';
+ public static final char SELL = 'S';
+ public static final char CROSS = 'X';
+ public static final char TRADE = 'T';
+
+ public AdvSide() {
+ super(4);
+ }
+
+ public AdvSide(char data) {
+ super(4, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvTransType.java
new file mode 100644
index 000000000..e30a5660d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AdvTransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AdvTransType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 5;
+ public static final String NEW = "N";
+ public static final String CANCEL = "C";
+ public static final String REPLACE = "R";
+
+ public AdvTransType() {
+ super(5);
+ }
+
+ public AdvTransType(String data) {
+ super(5, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffectedOrderID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffectedOrderID.java
new file mode 100644
index 000000000..0cddfcdb0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffectedOrderID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AffectedOrderID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 535;
+
+ public AffectedOrderID() {
+ super(535);
+ }
+
+ public AffectedOrderID(String data) {
+ super(535, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffectedSecondaryOrderID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffectedSecondaryOrderID.java
new file mode 100644
index 000000000..a13bfcde9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffectedSecondaryOrderID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AffectedSecondaryOrderID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 536;
+
+ public AffectedSecondaryOrderID() {
+ super(536);
+ }
+
+ public AffectedSecondaryOrderID(String data) {
+ super(536, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffirmStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffirmStatus.java
new file mode 100644
index 000000000..57453c10f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AffirmStatus.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AffirmStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 940;
+ public static final int RECEIVED = 1;
+ public static final int CONFIRM_REJECTED = 2;
+ public static final int AFFIRMED = 3;
+
+ public AffirmStatus() {
+ super(940);
+ }
+
+ public AffirmStatus(int data) {
+ super(940, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AggregatedBook.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AggregatedBook.java
new file mode 100644
index 000000000..be75dfa66
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AggregatedBook.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class AggregatedBook extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 266;
+
+ public AggregatedBook() {
+ super(266);
+ }
+
+ public AggregatedBook(boolean data) {
+ super(266, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementCurrency.java
new file mode 100644
index 000000000..849379635
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AgreementCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 918;
+
+ public AgreementCurrency() {
+ super(918);
+ }
+
+ public AgreementCurrency(String data) {
+ super(918, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementDate.java
new file mode 100644
index 000000000..f8f9d756e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AgreementDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 915;
+
+ public AgreementDate() {
+ super(915);
+ }
+
+ public AgreementDate(String data) {
+ super(915, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementDesc.java
new file mode 100644
index 000000000..a003e6f4e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AgreementDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 913;
+
+ public AgreementDesc() {
+ super(913);
+ }
+
+ public AgreementDesc(String data) {
+ super(913, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementID.java
new file mode 100644
index 000000000..e201a8b87
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AgreementID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AgreementID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 914;
+
+ public AgreementID() {
+ super(914);
+ }
+
+ public AgreementID(String data) {
+ super(914, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccount.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccount.java
new file mode 100644
index 000000000..c7d3c5b26
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccount.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocAccount extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 79;
+
+ public AllocAccount() {
+ super(79);
+ }
+
+ public AllocAccount(String data) {
+ super(79, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccountType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccountType.java
new file mode 100644
index 000000000..b2968058d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccountType.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocAccountType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 798;
+ public static final int ACCOUNT_IS_CARRIED_ON_CUSTOMER_SIDE_OF_BOOKS = 1;
+ public static final int ACCOUNT_IS_CARRIED_ON_NON_CUSTOMER_SIDE_OF_BOOKS = 2;
+ public static final int HOUSE_TRADER = 3;
+ public static final int FLOOR_TRADER = 4;
+ public static final int ACCOUNT_IS_CARRIED_ON_NON_CUSTOMER_SIDE_OF_BOOKS_AND_IS_CROSS_MARGINED = 6;
+ public static final int ACCOUNT_IS_HOUSE_TRADER_AND_IS_CROSS_MARGINED = 7;
+ public static final int JOINT_BACKOFFICE_ACCOUNT = 8;
+
+ public AllocAccountType() {
+ super(798);
+ }
+
+ public AllocAccountType(int data) {
+ super(798, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccruedInterestAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccruedInterestAmt.java
new file mode 100644
index 000000000..d3b9ff94a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAccruedInterestAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocAccruedInterestAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 742;
+
+ public AllocAccruedInterestAmt() {
+ super(742);
+ }
+
+ public AllocAccruedInterestAmt(java.math.BigDecimal data) {
+ super(742, data);
+ }
+
+ public AllocAccruedInterestAmt(double data) {
+ super(742, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAcctIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAcctIDSource.java
new file mode 100644
index 000000000..2222312bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAcctIDSource.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocAcctIDSource extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 661;
+ public static final int BIC = 1;
+ public static final int SID_CODE = 2;
+ public static final int TFM = 3;
+ public static final int OMGEO = 4;
+ public static final int DTCC_CODE = 5;
+ public static final int OTHER = 99;
+
+ public AllocAcctIDSource() {
+ super(661);
+ }
+
+ public AllocAcctIDSource(int data) {
+ super(661, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAvgPx.java
new file mode 100644
index 000000000..760bc1bf4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocAvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocAvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 153;
+
+ public AllocAvgPx() {
+ super(153);
+ }
+
+ public AllocAvgPx(java.math.BigDecimal data) {
+ super(153, data);
+ }
+
+ public AllocAvgPx(double data) {
+ super(153, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocCancReplaceReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocCancReplaceReason.java
new file mode 100644
index 000000000..4f25a6f8f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocCancReplaceReason.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocCancReplaceReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 796;
+ public static final int ORIGINAL_DETAILS_INCOMPLETE_INCORRECT = 1;
+ public static final int CHANGE_IN_UNDERLYING_ORDER_DETAILS = 2;
+ public static final int OTHER = 99;
+
+ public AllocCancReplaceReason() {
+ super(796);
+ }
+
+ public AllocCancReplaceReason(int data) {
+ super(796, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocHandlInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocHandlInst.java
new file mode 100644
index 000000000..2885f4ccd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocHandlInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocHandlInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 209;
+ public static final int MATCH = 1;
+ public static final int FORWARD = 2;
+ public static final int FORWARD_AND_MATCH = 3;
+
+ public AllocHandlInst() {
+ super(209);
+ }
+
+ public AllocHandlInst(int data) {
+ super(209, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocID.java
new file mode 100644
index 000000000..65586b253
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 70;
+
+ public AllocID() {
+ super(70);
+ }
+
+ public AllocID(String data) {
+ super(70, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocInterestAtMaturity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocInterestAtMaturity.java
new file mode 100644
index 000000000..901868653
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocInterestAtMaturity.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocInterestAtMaturity extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 741;
+
+ public AllocInterestAtMaturity() {
+ super(741);
+ }
+
+ public AllocInterestAtMaturity(java.math.BigDecimal data) {
+ super(741, data);
+ }
+
+ public AllocInterestAtMaturity(double data) {
+ super(741, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocIntermedReqType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocIntermedReqType.java
new file mode 100644
index 000000000..ea3659ee4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocIntermedReqType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocIntermedReqType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 808;
+ public static final int PENDING_ACCEPT = 1;
+ public static final int PENDING_RELEASE = 2;
+ public static final int PENDING_REVERSAL = 3;
+ public static final int ACCEPT = 4;
+ public static final int BLOCK_LEVEL_REJECT = 5;
+ public static final int ACCOUNT_LEVEL_REJECT = 6;
+
+ public AllocIntermedReqType() {
+ super(808);
+ }
+
+ public AllocIntermedReqType(int data) {
+ super(808, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocLinkID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocLinkID.java
new file mode 100644
index 000000000..13ef4d37d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocLinkID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocLinkID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 196;
+
+ public AllocLinkID() {
+ super(196);
+ }
+
+ public AllocLinkID(String data) {
+ super(196, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocLinkType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocLinkType.java
new file mode 100644
index 000000000..caf8d593a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocLinkType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocLinkType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 197;
+ public static final int F_X_NETTING = 0;
+ public static final int F_X_SWAP = 1;
+
+ public AllocLinkType() {
+ super(197);
+ }
+
+ public AllocLinkType(int data) {
+ super(197, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocNetMoney.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocNetMoney.java
new file mode 100644
index 000000000..5c80ee6c8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocNetMoney.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocNetMoney extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 154;
+
+ public AllocNetMoney() {
+ super(154);
+ }
+
+ public AllocNetMoney(java.math.BigDecimal data) {
+ super(154, data);
+ }
+
+ public AllocNetMoney(double data) {
+ super(154, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocNoOrdersType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocNoOrdersType.java
new file mode 100644
index 000000000..102899b13
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocNoOrdersType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocNoOrdersType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 857;
+ public static final int NOT_SPECIFIED = 0;
+ public static final int EXPLICIT_LIST_PROVIDED = 1;
+
+ public AllocNoOrdersType() {
+ super(857);
+ }
+
+ public AllocNoOrdersType(int data) {
+ super(857, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocPrice.java
new file mode 100644
index 000000000..a3ec4bc94
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 366;
+
+ public AllocPrice() {
+ super(366);
+ }
+
+ public AllocPrice(java.math.BigDecimal data) {
+ super(366, data);
+ }
+
+ public AllocPrice(double data) {
+ super(366, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocQty.java
new file mode 100644
index 000000000..56049803d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 80;
+
+ public AllocQty() {
+ super(80);
+ }
+
+ public AllocQty(java.math.BigDecimal data) {
+ super(80, data);
+ }
+
+ public AllocQty(double data) {
+ super(80, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocRejCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocRejCode.java
new file mode 100644
index 000000000..f5e216163
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocRejCode.java
@@ -0,0 +1,52 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocRejCode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 88;
+ public static final int UNKNOWN_ACCOUNT = 0;
+ public static final int INCORRECT_QUANTITY = 1;
+ public static final int INCORRECT_AVERAGE_PRICE = 2;
+ public static final int UNKNOWN_EXECUTING_BROKER_MNEMONIC = 3;
+ public static final int COMMISSION_DIFFERENCE = 4;
+ public static final int UNKNOWN_ORDERID = 5;
+ public static final int UNKNOWN_LISTID = 6;
+ public static final int OTHER = 7;
+ public static final int INCORRECT_ALLOCATED_QUANTITY = 8;
+ public static final int CALCULATION_DIFFERENCE = 9;
+ public static final int UNKNOWN_OR_STALE_EXEC_ID = 10;
+ public static final int MISMATCHED_DATA_VALUE = 11;
+ public static final int UNKNOWN_CLORDID = 12;
+ public static final int WAREHOUSE_REQUEST_REJECTED = 13;
+
+ public AllocRejCode() {
+ super(88);
+ }
+
+ public AllocRejCode(int data) {
+ super(88, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportID.java
new file mode 100644
index 000000000..548887ced
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocReportID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 755;
+
+ public AllocReportID() {
+ super(755);
+ }
+
+ public AllocReportID(String data) {
+ super(755, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportRefID.java
new file mode 100644
index 000000000..237f8c36c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocReportRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 795;
+
+ public AllocReportRefID() {
+ super(795);
+ }
+
+ public AllocReportRefID(String data) {
+ super(795, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportType.java
new file mode 100644
index 000000000..de25abcc2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocReportType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocReportType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 794;
+ public static final int SELLSIDE_CALCULATED_USING_PRELIMINARY = 3;
+ public static final int SELLSIDE_CALCULATED_WITHOUT_PRELIMINARY = 4;
+ public static final int WAREHOUSE_RECAP = 5;
+ public static final int REQUEST_TO_INTERMEDIARY = 8;
+
+ public AllocReportType() {
+ super(794);
+ }
+
+ public AllocReportType(int data) {
+ super(794, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlCurrAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlCurrAmt.java
new file mode 100644
index 000000000..5e43edcb2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlCurrAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllocSettlCurrAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 737;
+
+ public AllocSettlCurrAmt() {
+ super(737);
+ }
+
+ public AllocSettlCurrAmt(java.math.BigDecimal data) {
+ super(737, data);
+ }
+
+ public AllocSettlCurrAmt(double data) {
+ super(737, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlCurrency.java
new file mode 100644
index 000000000..ab35cf940
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocSettlCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 736;
+
+ public AllocSettlCurrency() {
+ super(736);
+ }
+
+ public AllocSettlCurrency(String data) {
+ super(736, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlInstType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlInstType.java
new file mode 100644
index 000000000..a5e9d95ef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocSettlInstType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocSettlInstType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 780;
+ public static final int USE_DEFAULT_INSTRUCTIONS = 0;
+ public static final int DERIVE_FROM_PARAMETERS_PROVIDED = 1;
+ public static final int FULL_DETAILS_PROVIDED = 2;
+ public static final int SSI_DB_IDS_PROVIDED = 3;
+ public static final int PHONE_FOR_INSTRUCTIONS = 4;
+
+ public AllocSettlInstType() {
+ super(780);
+ }
+
+ public AllocSettlInstType(int data) {
+ super(780, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocStatus.java
new file mode 100644
index 000000000..40458c90b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocStatus.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 87;
+ public static final int ACCEPTED = 0;
+ public static final int BLOCK_LEVEL_REJECT = 1;
+ public static final int ACCOUNT_LEVEL_REJECT = 2;
+ public static final int RECEIVED = 3;
+ public static final int INCOMPLETE = 4;
+ public static final int REJECTED_BY_INTERMEDIARY = 5;
+
+ public AllocStatus() {
+ super(87);
+ }
+
+ public AllocStatus(int data) {
+ super(87, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocText.java
new file mode 100644
index 000000000..9ff9880ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllocText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 161;
+
+ public AllocText() {
+ super(161);
+ }
+
+ public AllocText(String data) {
+ super(161, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocTransType.java
new file mode 100644
index 000000000..7e7645d08
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocTransType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class AllocTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 71;
+ public static final char NEW = '0';
+ public static final char REPLACE = '1';
+ public static final char CANCEL = '2';
+ public static final char PRELIMINARY = '3';
+ public static final char CALCULATED = '4';
+ public static final char CALCULATED_WITHOUT_PRELIMINARY = '5';
+
+ public AllocTransType() {
+ super(71);
+ }
+
+ public AllocTransType(char data) {
+ super(71, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocType.java
new file mode 100644
index 000000000..f16a66cca
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllocType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AllocType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 626;
+ public static final int CALCULATED = 1;
+ public static final int PRELIMINARY = 2;
+ public static final int READY_TO_BOOK_SINGLE_ORDER = 5;
+ public static final int WAREHOUSE_INSTRUCTION = 7;
+ public static final int REQUEST_TO_INTERMEDIARY = 8;
+
+ public AllocType() {
+ super(626);
+ }
+
+ public AllocType(int data) {
+ super(626, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessCurr.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessCurr.java
new file mode 100644
index 000000000..74384b392
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessCurr.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AllowableOneSidednessCurr extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 767;
+
+ public AllowableOneSidednessCurr() {
+ super(767);
+ }
+
+ public AllowableOneSidednessCurr(String data) {
+ super(767, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessPct.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessPct.java
new file mode 100644
index 000000000..2c0451068
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessPct.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class AllowableOneSidednessPct extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 765;
+
+ public AllowableOneSidednessPct() {
+ super(765);
+ }
+
+ public AllowableOneSidednessPct(double data) {
+ super(765, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessValue.java
new file mode 100644
index 000000000..1803e8afc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AllowableOneSidednessValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AllowableOneSidednessValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 766;
+
+ public AllowableOneSidednessValue() {
+ super(766);
+ }
+
+ public AllowableOneSidednessValue(java.math.BigDecimal data) {
+ super(766, data);
+ }
+
+ public AllowableOneSidednessValue(double data) {
+ super(766, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AltMDSourceID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AltMDSourceID.java
new file mode 100644
index 000000000..67bc5d381
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AltMDSourceID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AltMDSourceID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 817;
+
+ public AltMDSourceID() {
+ super(817);
+ }
+
+ public AltMDSourceID(String data) {
+ super(817, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueAction.java
new file mode 100644
index 000000000..ca0fc46af
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueAction.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ApplQueueAction extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 815;
+ public static final int NO_ACTION_TAKEN = 0;
+ public static final int QUEUE_FLUSHED = 1;
+ public static final int OVERLAY_LAST = 2;
+ public static final int END_SESSION = 3;
+
+ public ApplQueueAction() {
+ super(815);
+ }
+
+ public ApplQueueAction(int data) {
+ super(815, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueDepth.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueDepth.java
new file mode 100644
index 000000000..e9da9002c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueDepth.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ApplQueueDepth extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 813;
+
+ public ApplQueueDepth() {
+ super(813);
+ }
+
+ public ApplQueueDepth(int data) {
+ super(813, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueMax.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueMax.java
new file mode 100644
index 000000000..336912f91
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueMax.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ApplQueueMax extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 812;
+
+ public ApplQueueMax() {
+ super(812);
+ }
+
+ public ApplQueueMax(int data) {
+ super(812, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueResolution.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueResolution.java
new file mode 100644
index 000000000..3d9ba3a85
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ApplQueueResolution.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ApplQueueResolution extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 814;
+ public static final int NO_ACTION_TAKEN = 0;
+ public static final int QUEUE_FLUSHED = 1;
+ public static final int OVERLAY_LAST = 2;
+ public static final int END_SESSION = 3;
+
+ public ApplQueueResolution() {
+ super(814);
+ }
+
+ public ApplQueueResolution(int data) {
+ super(814, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AsgnReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AsgnReqID.java
new file mode 100644
index 000000000..8c090602b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AsgnReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AsgnReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 831;
+
+ public AsgnReqID() {
+ super(831);
+ }
+
+ public AsgnReqID(String data) {
+ super(831, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AsgnRptID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AsgnRptID.java
new file mode 100644
index 000000000..f38fdbe58
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AsgnRptID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class AsgnRptID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 833;
+
+ public AsgnRptID() {
+ super(833);
+ }
+
+ public AsgnRptID(String data) {
+ super(833, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AssignmentMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AssignmentMethod.java
new file mode 100644
index 000000000..4eb64e383
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AssignmentMethod.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class AssignmentMethod extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 744;
+ public static final char RANDOM = 'R';
+ public static final char PRORATA = 'P';
+
+ public AssignmentMethod() {
+ super(744);
+ }
+
+ public AssignmentMethod(char data) {
+ super(744, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AssignmentUnit.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AssignmentUnit.java
new file mode 100644
index 000000000..0c05b2c36
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AssignmentUnit.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AssignmentUnit extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 745;
+
+ public AssignmentUnit() {
+ super(745);
+ }
+
+ public AssignmentUnit(java.math.BigDecimal data) {
+ super(745, data);
+ }
+
+ public AssignmentUnit(double data) {
+ super(745, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AutoAcceptIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AutoAcceptIndicator.java
new file mode 100644
index 000000000..0a2348d63
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AutoAcceptIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class AutoAcceptIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 754;
+
+ public AutoAcceptIndicator() {
+ super(754);
+ }
+
+ public AutoAcceptIndicator(boolean data) {
+ super(754, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgParPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgParPx.java
new file mode 100644
index 000000000..a13dba384
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgParPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AvgParPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 860;
+
+ public AvgParPx() {
+ super(860);
+ }
+
+ public AvgParPx(java.math.BigDecimal data) {
+ super(860, data);
+ }
+
+ public AvgParPx(double data) {
+ super(860, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPx.java
new file mode 100644
index 000000000..feb9f08b6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class AvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 6;
+
+ public AvgPx() {
+ super(6);
+ }
+
+ public AvgPx(java.math.BigDecimal data) {
+ super(6, data);
+ }
+
+ public AvgPx(double data) {
+ super(6, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPxIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPxIndicator.java
new file mode 100644
index 000000000..b095dbca7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPxIndicator.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AvgPxIndicator extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 819;
+ public static final int NO_AVERAGE_PRICING = 0;
+ public static final int TRADE_IS_PART_OF_AN_AVERAGE_PRICE_GROUP_IDENTIFIED_BY_THE_TRADELINKID = 1;
+ public static final int LAST_TRADE_IN_THE_AVERAGE_PRICE_GROUP_IDENTIFIED_BY_THE_TRADELINKID = 2;
+
+ public AvgPxIndicator() {
+ super(819);
+ }
+
+ public AvgPxIndicator(int data) {
+ super(819, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPxPrecision.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPxPrecision.java
new file mode 100644
index 000000000..2ac3b6444
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/AvgPxPrecision.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class AvgPxPrecision extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 74;
+
+ public AvgPxPrecision() {
+ super(74);
+ }
+
+ public AvgPxPrecision(int data) {
+ super(74, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisFeatureDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisFeatureDate.java
new file mode 100644
index 000000000..8c8d4f9df
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisFeatureDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BasisFeatureDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 259;
+
+ public BasisFeatureDate() {
+ super(259);
+ }
+
+ public BasisFeatureDate(String data) {
+ super(259, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisFeaturePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisFeaturePrice.java
new file mode 100644
index 000000000..6a486565e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisFeaturePrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BasisFeaturePrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 260;
+
+ public BasisFeaturePrice() {
+ super(260);
+ }
+
+ public BasisFeaturePrice(java.math.BigDecimal data) {
+ super(260, data);
+ }
+
+ public BasisFeaturePrice(double data) {
+ super(260, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisPxType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisPxType.java
new file mode 100644
index 000000000..40a12c2eb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BasisPxType.java
@@ -0,0 +1,51 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class BasisPxType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 419;
+ public static final char CLOSING_PRICE_AT_MORNING_SESSION = '2';
+ public static final char CLOSING_PRICE = '3';
+ public static final char CURRENT_PRICE = '4';
+ public static final char SQ = '5';
+ public static final char VWAP_THROUGH_A_DAY = '6';
+ public static final char VWAP_THROUGH_A_MORNING_SESSION = '7';
+ public static final char VWAP_THROUGH_AN_AFTERNOON_SESSION = '8';
+ public static final char VWAP_THROUGH_A_DAY_EXCEPT_YORI = '9';
+ public static final char VWAP_THROUGH_A_MORNING_SESSION_EXCEPT_YORI = 'A';
+ public static final char VWAP_THROUGH_AN_AFTERNOON_SESSION_EXCEPT_YORI = 'B';
+ public static final char STRIKE = 'C';
+ public static final char OPEN = 'D';
+ public static final char OTHERS = 'Z';
+
+ public BasisPxType() {
+ super(419);
+ }
+
+ public BasisPxType(char data) {
+ super(419, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BeginSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BeginSeqNo.java
new file mode 100644
index 000000000..6fb02afde
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BeginSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BeginSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 7;
+
+ public BeginSeqNo() {
+ super(7);
+ }
+
+ public BeginSeqNo(int data) {
+ super(7, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BeginString.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BeginString.java
new file mode 100644
index 000000000..d87b2b8c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BeginString.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BeginString extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 8;
+
+ public BeginString() {
+ super(8);
+ }
+
+ public BeginString(String data) {
+ super(8, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurveCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurveCurrency.java
new file mode 100644
index 000000000..594383400
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurveCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BenchmarkCurveCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 220;
+
+ public BenchmarkCurveCurrency() {
+ super(220);
+ }
+
+ public BenchmarkCurveCurrency(String data) {
+ super(220, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurveName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurveName.java
new file mode 100644
index 000000000..8dfdcd044
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurveName.java
@@ -0,0 +1,50 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BenchmarkCurveName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 221;
+ public static final String MUNIAAA = "MuniAAA";
+ public static final String FUTURESWAP = "FutureSWAP";
+ public static final String LIBID = "LIBID";
+ public static final String LIBOR = "LIBOR";
+ public static final String OTHER = "OTHER";
+ public static final String SWAP = "SWAP";
+ public static final String TREASURY = "Treasury";
+ public static final String EURIBOR = "Euribor";
+ public static final String PFANDBRIEFE = "Pfandbriefe";
+ public static final String EONIA = "EONIA";
+ public static final String SONIA = "SONIA";
+ public static final String EUREPO = "EUREPO";
+
+ public BenchmarkCurveName() {
+ super(221);
+ }
+
+ public BenchmarkCurveName(String data) {
+ super(221, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurvePoint.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurvePoint.java
new file mode 100644
index 000000000..ebe369784
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkCurvePoint.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BenchmarkCurvePoint extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 222;
+
+ public BenchmarkCurvePoint() {
+ super(222);
+ }
+
+ public BenchmarkCurvePoint(String data) {
+ super(222, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkPrice.java
new file mode 100644
index 000000000..5a96c4b99
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BenchmarkPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 662;
+
+ public BenchmarkPrice() {
+ super(662);
+ }
+
+ public BenchmarkPrice(java.math.BigDecimal data) {
+ super(662, data);
+ }
+
+ public BenchmarkPrice(double data) {
+ super(662, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkPriceType.java
new file mode 100644
index 000000000..1050e89ef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkPriceType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BenchmarkPriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 663;
+
+ public BenchmarkPriceType() {
+ super(663);
+ }
+
+ public BenchmarkPriceType(int data) {
+ super(663, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkSecurityID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkSecurityID.java
new file mode 100644
index 000000000..2679fd3df
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkSecurityID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BenchmarkSecurityID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 699;
+
+ public BenchmarkSecurityID() {
+ super(699);
+ }
+
+ public BenchmarkSecurityID(String data) {
+ super(699, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkSecurityIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkSecurityIDSource.java
new file mode 100644
index 000000000..b04769e24
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BenchmarkSecurityIDSource.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BenchmarkSecurityIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 761;
+ public static final String CUSIP = "1";
+ public static final String SEDOL = "2";
+ public static final String QUIK = "3";
+ public static final String ISIN_NUMBER = "4";
+ public static final String RIC_CODE = "5";
+ public static final String ISO_CURRENCY_CODE = "6";
+ public static final String ISO_COUNTRY_CODE = "7";
+ public static final String EXCHANGE_SYMBOL = "8";
+ public static final String CONSOLIDATED_TAPE_ASSOCIATION = "9";
+ public static final String BLOOMBERG_SYMBOL = "A";
+ public static final String WERTPAPIER = "B";
+ public static final String DUTCH = "C";
+ public static final String VALOREN = "D";
+ public static final String SICOVAM = "E";
+ public static final String BELGIAN = "F";
+ public static final String COMMON = "G";
+ public static final String CLEARING_HOUSE_CLEARING_ORGANIZATION = "H";
+ public static final String ISDA_FPML_PRODUCT_SPECIFICATION = "I";
+ public static final String OPTIONS_PRICE_REPORTING_AUTHORITY = "J";
+
+ public BenchmarkSecurityIDSource() {
+ super(761);
+ }
+
+ public BenchmarkSecurityIDSource(String data) {
+ super(761, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidDescriptor.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidDescriptor.java
new file mode 100644
index 000000000..85bc72472
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidDescriptor.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BidDescriptor extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 400;
+
+ public BidDescriptor() {
+ super(400);
+ }
+
+ public BidDescriptor(String data) {
+ super(400, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidDescriptorType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidDescriptorType.java
new file mode 100644
index 000000000..7f461b9dc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidDescriptorType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BidDescriptorType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 399;
+ public static final int SECTOR = 1;
+ public static final int COUNTRY = 2;
+ public static final int INDEX = 3;
+
+ public BidDescriptorType() {
+ super(399);
+ }
+
+ public BidDescriptorType(int data) {
+ super(399, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidForwardPoints.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidForwardPoints.java
new file mode 100644
index 000000000..c96f4f717
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidForwardPoints.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidForwardPoints extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 189;
+
+ public BidForwardPoints() {
+ super(189);
+ }
+
+ public BidForwardPoints(java.math.BigDecimal data) {
+ super(189, data);
+ }
+
+ public BidForwardPoints(double data) {
+ super(189, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidForwardPoints2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidForwardPoints2.java
new file mode 100644
index 000000000..77bd66da1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidForwardPoints2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidForwardPoints2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 642;
+
+ public BidForwardPoints2() {
+ super(642);
+ }
+
+ public BidForwardPoints2(java.math.BigDecimal data) {
+ super(642, data);
+ }
+
+ public BidForwardPoints2(double data) {
+ super(642, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidID.java
new file mode 100644
index 000000000..1259f03dd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BidID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 390;
+
+ public BidID() {
+ super(390);
+ }
+
+ public BidID(String data) {
+ super(390, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidPx.java
new file mode 100644
index 000000000..e41cb8ff4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 132;
+
+ public BidPx() {
+ super(132);
+ }
+
+ public BidPx(java.math.BigDecimal data) {
+ super(132, data);
+ }
+
+ public BidPx(double data) {
+ super(132, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidRequestTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidRequestTransType.java
new file mode 100644
index 000000000..68ce045e7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidRequestTransType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class BidRequestTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 374;
+ public static final char NEW = 'N';
+ public static final char CANCEL = 'C';
+
+ public BidRequestTransType() {
+ super(374);
+ }
+
+ public BidRequestTransType(char data) {
+ super(374, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidSize.java
new file mode 100644
index 000000000..21e49120b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 134;
+
+ public BidSize() {
+ super(134);
+ }
+
+ public BidSize(java.math.BigDecimal data) {
+ super(134, data);
+ }
+
+ public BidSize(double data) {
+ super(134, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidSpotRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidSpotRate.java
new file mode 100644
index 000000000..57b56730f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidSpotRate.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BidSpotRate extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 188;
+
+ public BidSpotRate() {
+ super(188);
+ }
+
+ public BidSpotRate(java.math.BigDecimal data) {
+ super(188, data);
+ }
+
+ public BidSpotRate(double data) {
+ super(188, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidTradeType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidTradeType.java
new file mode 100644
index 000000000..f503416a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidTradeType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class BidTradeType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 418;
+ public static final char RISK_TRADE = 'R';
+ public static final char VWAP_GUARANTEE = 'G';
+ public static final char AGENCY = 'A';
+ public static final char GUARANTEED_CLOSE = 'J';
+
+ public BidTradeType() {
+ super(418);
+ }
+
+ public BidTradeType(char data) {
+ super(418, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidType.java
new file mode 100644
index 000000000..5dc5673bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BidType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 394;
+ public static final int NON_DISCLOSED = 1;
+ public static final int DISCLOSED_STYLE = 2;
+ public static final int NO_BIDDING_PROCESS = 3;
+
+ public BidType() {
+ super(394);
+ }
+
+ public BidType(int data) {
+ super(394, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidYield.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidYield.java
new file mode 100644
index 000000000..69a01c891
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BidYield.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class BidYield extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 632;
+
+ public BidYield() {
+ super(632);
+ }
+
+ public BidYield(double data) {
+ super(632, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BodyLength.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BodyLength.java
new file mode 100644
index 000000000..c5b0a8d5c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BodyLength.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BodyLength extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 9;
+
+ public BodyLength() {
+ super(9);
+ }
+
+ public BodyLength(int data) {
+ super(9, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingRefID.java
new file mode 100644
index 000000000..cf6ce1578
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BookingRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 466;
+
+ public BookingRefID() {
+ super(466);
+ }
+
+ public BookingRefID(String data) {
+ super(466, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingType.java
new file mode 100644
index 000000000..83c0dcb21
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BookingType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 775;
+ public static final int REGULAR_BOOKING = 0;
+ public static final int CFD = 1;
+ public static final int TOTAL_RETURN_SWAP = 2;
+
+ public BookingType() {
+ super(775);
+ }
+
+ public BookingType(int data) {
+ super(775, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingUnit.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingUnit.java
new file mode 100644
index 000000000..219ee71b9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BookingUnit.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class BookingUnit extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 590;
+ public static final char EACH_PARTIAL_EXECUTION_IS_A_BOOKABLE_UNIT = '0';
+ public static final char AGGREGATE_PARTIAL_EXECUTIONS_ON_THIS_ORDER_AND_BOOK_ONE_TRADE_PER_ORDER = '1';
+ public static final char AGGREGATE_EXECUTIONS_FOR_THIS_SYMBOL_SIDE_AND_SETTLEMENT_DATE = '2';
+
+ public BookingUnit() {
+ super(590);
+ }
+
+ public BookingUnit(char data) {
+ super(590, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BusinessRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BusinessRejectReason.java
new file mode 100644
index 000000000..a3fa95e11
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BusinessRejectReason.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class BusinessRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 380;
+ public static final int OTHER = 0;
+ public static final int UNKOWN_ID = 1;
+ public static final int UNKNOWN_SECURITY = 2;
+ public static final int UNSUPPORTED_MESSAGE_TYPE = 3;
+ public static final int APPLICATION_NOT_AVAILABLE = 4;
+ public static final int CONDITIONALLY_REQUIRED_FIELD_MISSING = 5;
+ public static final int NOT_AUTHORIZED = 6;
+ public static final int DELIVERTO_FIRM_NOT_AVAILABLE_AT_THIS_TIME = 7;
+
+ public BusinessRejectReason() {
+ super(380);
+ }
+
+ public BusinessRejectReason(int data) {
+ super(380, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BusinessRejectRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BusinessRejectRefID.java
new file mode 100644
index 000000000..8c671c04f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BusinessRejectRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class BusinessRejectRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 379;
+
+ public BusinessRejectRefID() {
+ super(379);
+ }
+
+ public BusinessRejectRefID(String data) {
+ super(379, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BuyVolume.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BuyVolume.java
new file mode 100644
index 000000000..a1f138267
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/BuyVolume.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class BuyVolume extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 330;
+
+ public BuyVolume() {
+ super(330);
+ }
+
+ public BuyVolume(java.math.BigDecimal data) {
+ super(330, data);
+ }
+
+ public BuyVolume(double data) {
+ super(330, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CFICode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CFICode.java
new file mode 100644
index 000000000..88c2da529
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CFICode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CFICode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 461;
+
+ public CFICode() {
+ super(461);
+ }
+
+ public CFICode(String data) {
+ super(461, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CPProgram.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CPProgram.java
new file mode 100644
index 000000000..ec1a234f7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CPProgram.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CPProgram extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 875;
+
+ public CPProgram() {
+ super(875);
+ }
+
+ public CPProgram(int data) {
+ super(875, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CPRegType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CPRegType.java
new file mode 100644
index 000000000..e41aabc30
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CPRegType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CPRegType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 876;
+
+ public CPRegType() {
+ super(876);
+ }
+
+ public CPRegType(String data) {
+ super(876, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CancellationRights.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CancellationRights.java
new file mode 100644
index 000000000..560ab1fd5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CancellationRights.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CancellationRights extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 480;
+ public static final char YES = 'Y';
+ public static final char NO_EXECUTION_ONLY = 'N';
+ public static final char NO_WAIVER_AGREEMENT = 'M';
+ public static final char NO_INSTITUTIONAL = 'O';
+
+ public CancellationRights() {
+ super(480);
+ }
+
+ public CancellationRights(char data) {
+ super(480, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardExpDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardExpDate.java
new file mode 100644
index 000000000..cc4986d58
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardExpDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CardExpDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 490;
+
+ public CardExpDate() {
+ super(490);
+ }
+
+ public CardExpDate(String data) {
+ super(490, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardHolderName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardHolderName.java
new file mode 100644
index 000000000..ca982295e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardHolderName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CardHolderName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 488;
+
+ public CardHolderName() {
+ super(488);
+ }
+
+ public CardHolderName(String data) {
+ super(488, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardIssNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardIssNum.java
new file mode 100644
index 000000000..12b4576b8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardIssNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CardIssNum extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 491;
+
+ public CardIssNum() {
+ super(491);
+ }
+
+ public CardIssNum(String data) {
+ super(491, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardNumber.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardNumber.java
new file mode 100644
index 000000000..a891d7d3a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardNumber.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CardNumber extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 489;
+
+ public CardNumber() {
+ super(489);
+ }
+
+ public CardNumber(String data) {
+ super(489, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardStartDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardStartDate.java
new file mode 100644
index 000000000..ce5c5cee4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CardStartDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CardStartDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 503;
+
+ public CardStartDate() {
+ super(503);
+ }
+
+ public CardStartDate(String data) {
+ super(503, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentAcctName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentAcctName.java
new file mode 100644
index 000000000..959206949
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentAcctName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashDistribAgentAcctName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 502;
+
+ public CashDistribAgentAcctName() {
+ super(502);
+ }
+
+ public CashDistribAgentAcctName(String data) {
+ super(502, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentAcctNumber.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentAcctNumber.java
new file mode 100644
index 000000000..c54c9285c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentAcctNumber.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashDistribAgentAcctNumber extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 500;
+
+ public CashDistribAgentAcctNumber() {
+ super(500);
+ }
+
+ public CashDistribAgentAcctNumber(String data) {
+ super(500, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentCode.java
new file mode 100644
index 000000000..841d4b0d7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashDistribAgentCode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 499;
+
+ public CashDistribAgentCode() {
+ super(499);
+ }
+
+ public CashDistribAgentCode(String data) {
+ super(499, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentName.java
new file mode 100644
index 000000000..9fb425cd4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribAgentName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashDistribAgentName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 498;
+
+ public CashDistribAgentName() {
+ super(498);
+ }
+
+ public CashDistribAgentName(String data) {
+ super(498, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribCurr.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribCurr.java
new file mode 100644
index 000000000..cf86d2417
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribCurr.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashDistribCurr extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 478;
+
+ public CashDistribCurr() {
+ super(478);
+ }
+
+ public CashDistribCurr(String data) {
+ super(478, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribPayRef.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribPayRef.java
new file mode 100644
index 000000000..95ce638e5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashDistribPayRef.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CashDistribPayRef extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 501;
+
+ public CashDistribPayRef() {
+ super(501);
+ }
+
+ public CashDistribPayRef(String data) {
+ super(501, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashMargin.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashMargin.java
new file mode 100644
index 000000000..72c3f6562
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashMargin.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CashMargin extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 544;
+ public static final char CASH = '1';
+ public static final char MARGIN_OPEN = '2';
+ public static final char MARGIN_CLOSE = '3';
+
+ public CashMargin() {
+ super(544);
+ }
+
+ public CashMargin(char data) {
+ super(544, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashOrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashOrderQty.java
new file mode 100644
index 000000000..4d89cc7a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashOrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CashOrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 152;
+
+ public CashOrderQty() {
+ super(152);
+ }
+
+ public CashOrderQty(java.math.BigDecimal data) {
+ super(152, data);
+ }
+
+ public CashOrderQty(double data) {
+ super(152, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashOutstanding.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashOutstanding.java
new file mode 100644
index 000000000..2a0bc4953
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CashOutstanding.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CashOutstanding extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 901;
+
+ public CashOutstanding() {
+ super(901);
+ }
+
+ public CashOutstanding(java.math.BigDecimal data) {
+ super(901, data);
+ }
+
+ public CashOutstanding(double data) {
+ super(901, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CheckSum.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CheckSum.java
new file mode 100644
index 000000000..434f009d6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CheckSum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CheckSum extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 10;
+
+ public CheckSum() {
+ super(10);
+ }
+
+ public CheckSum(String data) {
+ super(10, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClOrdID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClOrdID.java
new file mode 100644
index 000000000..7a20ef089
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClOrdID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClOrdID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 11;
+
+ public ClOrdID() {
+ super(11);
+ }
+
+ public ClOrdID(String data) {
+ super(11, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClOrdLinkID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClOrdLinkID.java
new file mode 100644
index 000000000..a13f1a768
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClOrdLinkID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClOrdLinkID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 583;
+
+ public ClOrdLinkID() {
+ super(583);
+ }
+
+ public ClOrdLinkID(String data) {
+ super(583, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingBusinessDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingBusinessDate.java
new file mode 100644
index 000000000..e60c45799
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingBusinessDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClearingBusinessDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 715;
+
+ public ClearingBusinessDate() {
+ super(715);
+ }
+
+ public ClearingBusinessDate(String data) {
+ super(715, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingFeeIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingFeeIndicator.java
new file mode 100644
index 000000000..775937f20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingFeeIndicator.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClearingFeeIndicator extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 635;
+ public static final String CBOE_MEMBER = "B";
+ public static final String NON_MEMBER_AND_CUSTOMER = "C";
+ public static final String EQUITY_MEMBER_AND_CLEARING_MEMBER = "E";
+ public static final String FULL_AND_ASSOCIATE_MEMBER_TRADING_FOR_OWN_ACCOUNT_AND_AS_FLOOR_BROKERS = "F";
+ public static final String FIRMS_106H_AND_106J = "H";
+ public static final String GIM_IDEM_AND_COM_MEMBERSHIP_INTEREST_HOLDERS = "I";
+ public static final String LESSEE_AND_106F_EMPLOYEES = "L";
+ public static final String ALL_OTHER_OWNERSHIP_TYPES = "M";
+
+ public ClearingFeeIndicator() {
+ super(635);
+ }
+
+ public ClearingFeeIndicator(String data) {
+ super(635, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingInstruction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingInstruction.java
new file mode 100644
index 000000000..637523179
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClearingInstruction.java
@@ -0,0 +1,52 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ClearingInstruction extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 577;
+ public static final int PROCESS_NORMALLY = 0;
+ public static final int EXCLUDE_FROM_ALL_NETTING = 1;
+ public static final int BILATERAL_NETTING_ONLY = 2;
+ public static final int EX_CLEARING = 3;
+ public static final int SPECIAL_TRADE = 4;
+ public static final int MULTILATERAL_NETTING = 5;
+ public static final int CLEAR_AGAINST_CENTRAL_COUNTERPARTY = 6;
+ public static final int EXCLUDE_FROM_CENTRAL_COUNTERPARTY = 7;
+ public static final int MANUAL_MODE = 8;
+ public static final int AUTOMATIC_POSTING_MODE = 9;
+ public static final int AUTOMATIC_GIVE_UP_MODE = 10;
+ public static final int QUALIFIED_SERVICE_REPRESENTATIVE = 11;
+ public static final int CUSTOMER_TRADE = 12;
+ public static final int SELF_CLEARING = 13;
+
+ public ClearingInstruction() {
+ super(577);
+ }
+
+ public ClearingInstruction(int data) {
+ super(577, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClientBidID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClientBidID.java
new file mode 100644
index 000000000..c84c0d547
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ClientBidID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ClientBidID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 391;
+
+ public ClientBidID() {
+ super(391);
+ }
+
+ public ClientBidID(String data) {
+ super(391, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAction.java
new file mode 100644
index 000000000..38dae4745
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAction.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollAction extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 944;
+ public static final int RETAIN = 0;
+ public static final int ADD = 1;
+ public static final int REMOVE = 2;
+
+ public CollAction() {
+ super(944);
+ }
+
+ public CollAction(int data) {
+ super(944, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnID.java
new file mode 100644
index 000000000..945fb6d6c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CollAsgnID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 902;
+
+ public CollAsgnID() {
+ super(902);
+ }
+
+ public CollAsgnID(String data) {
+ super(902, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnReason.java
new file mode 100644
index 000000000..d4168198a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnReason.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollAsgnReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 895;
+ public static final int INITIAL = 0;
+ public static final int SCHEDULED = 1;
+ public static final int TIME_WARNING = 2;
+ public static final int MARGIN_DEFICIENCY = 3;
+ public static final int MARGIN_EXCESS = 4;
+ public static final int FORWARD_COLLATERAL_DEMAND = 5;
+ public static final int EVENT_OF_DEFAULT = 6;
+ public static final int ADVERSE_TAX_EVENT = 7;
+
+ public CollAsgnReason() {
+ super(895);
+ }
+
+ public CollAsgnReason(int data) {
+ super(895, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRefID.java
new file mode 100644
index 000000000..6a59b9ad6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CollAsgnRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 907;
+
+ public CollAsgnRefID() {
+ super(907);
+ }
+
+ public CollAsgnRefID(String data) {
+ super(907, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRejectReason.java
new file mode 100644
index 000000000..9dc05b72a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRejectReason.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollAsgnRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 906;
+ public static final int UNKNOWN_DEAL = 0;
+ public static final int UNKNOWN_OR_INVALID_INSTRUMENT = 1;
+ public static final int UNAUTHORIZED_TRANSACTION = 2;
+ public static final int INSUFFICIENT_COLLATERAL = 3;
+ public static final int INVALID_TYPE_OF_COLLATERAL = 4;
+ public static final int EXCESSIVE_SUBSTITUTION = 5;
+ public static final int OTHER = 99;
+
+ public CollAsgnRejectReason() {
+ super(906);
+ }
+
+ public CollAsgnRejectReason(int data) {
+ super(906, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRespType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRespType.java
new file mode 100644
index 000000000..eefd4401f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnRespType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollAsgnRespType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 905;
+ public static final int RECEIVED = 0;
+ public static final int ACCEPTED = 1;
+ public static final int DECLINED = 2;
+ public static final int REJECTED = 3;
+
+ public CollAsgnRespType() {
+ super(905);
+ }
+
+ public CollAsgnRespType(int data) {
+ super(905, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnTransType.java
new file mode 100644
index 000000000..45fe58edf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollAsgnTransType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollAsgnTransType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 903;
+ public static final int NEW = 0;
+ public static final int REPLACE = 1;
+ public static final int CANCEL = 2;
+ public static final int RELEASE = 3;
+ public static final int REVERSE = 4;
+
+ public CollAsgnTransType() {
+ super(903);
+ }
+
+ public CollAsgnTransType(int data) {
+ super(903, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryID.java
new file mode 100644
index 000000000..c6c8db22f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CollInquiryID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 909;
+
+ public CollInquiryID() {
+ super(909);
+ }
+
+ public CollInquiryID(String data) {
+ super(909, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryQualifier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryQualifier.java
new file mode 100644
index 000000000..12dcb0212
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryQualifier.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollInquiryQualifier extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 896;
+ public static final int TRADEDATE = 0;
+ public static final int GC_INSTRUMENT = 1;
+ public static final int COLLATERALINSTRUMENT = 2;
+ public static final int SUBSTITUTION_ELIGIBLE = 3;
+ public static final int NOT_ASSIGNED = 4;
+ public static final int PARTIALLY_ASSIGNED = 5;
+ public static final int FULLY_ASSIGNED = 6;
+ public static final int OUTSTANDING_TRADES = 7;
+
+ public CollInquiryQualifier() {
+ super(896);
+ }
+
+ public CollInquiryQualifier(int data) {
+ super(896, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryResult.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryResult.java
new file mode 100644
index 000000000..e00537253
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryResult.java
@@ -0,0 +1,49 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollInquiryResult extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 946;
+ public static final int SUCCESSFUL = 0;
+ public static final int INVALID_OR_UNKNOWN_INSTRUMENT = 1;
+ public static final int INVALID_OR_UNKNOWN_COLLATERAL_TYPE = 2;
+ public static final int INVALID_PARTIES = 3;
+ public static final int INVALID_TRANSPORT_TYPE_REQUESTED = 4;
+ public static final int INVALID_DESTINATION_REQUESTED = 5;
+ public static final int NO_COLLATERAL_FOUND_FOR_THE_TRADE_SPECIFIED = 6;
+ public static final int NO_COLLATERAL_FOUND_FOR_THE_ORDER_SPECIFIED = 7;
+ public static final int COLLATERAL_INQUIRY_TYPE_NOT_SUPPORTED = 8;
+ public static final int UNAUTHORIZED_FOR_COLLATERAL_INQUIRY = 9;
+ public static final int OTHER = 99;
+
+ public CollInquiryResult() {
+ super(946);
+ }
+
+ public CollInquiryResult(int data) {
+ super(946, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryStatus.java
new file mode 100644
index 000000000..8d0ffcda6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollInquiryStatus.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollInquiryStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 945;
+ public static final int ACCEPTED = 0;
+ public static final int ACCEPTED_WITH_WARNINGS = 1;
+ public static final int COMPLETED = 2;
+ public static final int COMPLETED_WITH_WARNINGS = 3;
+ public static final int REJECTED = 4;
+
+ public CollInquiryStatus() {
+ super(945);
+ }
+
+ public CollInquiryStatus(int data) {
+ super(945, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollReqID.java
new file mode 100644
index 000000000..a071c056c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CollReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 894;
+
+ public CollReqID() {
+ super(894);
+ }
+
+ public CollReqID(String data) {
+ super(894, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollRespID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollRespID.java
new file mode 100644
index 000000000..05f78b9a1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollRespID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CollRespID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 904;
+
+ public CollRespID() {
+ super(904);
+ }
+
+ public CollRespID(String data) {
+ super(904, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollRptID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollRptID.java
new file mode 100644
index 000000000..05076f78c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollRptID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CollRptID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 908;
+
+ public CollRptID() {
+ super(908);
+ }
+
+ public CollRptID(String data) {
+ super(908, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollStatus.java
new file mode 100644
index 000000000..0a3f7e5b4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CollStatus.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CollStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 910;
+ public static final int UNASSIGNED = 0;
+ public static final int PARTIALLY_ASSIGNED = 1;
+ public static final int ASSIGNMENT_PROPOSED = 2;
+ public static final int ASSIGNED = 3;
+ public static final int CHALLENGED = 4;
+
+ public CollStatus() {
+ super(910);
+ }
+
+ public CollStatus(int data) {
+ super(910, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CommCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CommCurrency.java
new file mode 100644
index 000000000..e4c6aa106
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CommCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CommCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 479;
+
+ public CommCurrency() {
+ super(479);
+ }
+
+ public CommCurrency(String data) {
+ super(479, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CommType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CommType.java
new file mode 100644
index 000000000..707d40807
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CommType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CommType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 13;
+ public static final char PER_UNIT = '1';
+ public static final char PERCENTAGE = '2';
+ public static final char ABSOLUTE = '3';
+ public static final char PERCENTAGE_WAIVED_CASH_DISCOUNT = '4';
+ public static final char PERCENTAGE_WAIVED_ENHANCED_UNITS = '5';
+ public static final char POINTS_PER_BOND_OR_OR_CONTRACT = '6';
+
+ public CommType() {
+ super(13);
+ }
+
+ public CommType(char data) {
+ super(13, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Commission.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Commission.java
new file mode 100644
index 000000000..fddfa441f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Commission.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Commission extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 12;
+
+ public Commission() {
+ super(12);
+ }
+
+ public Commission(java.math.BigDecimal data) {
+ super(12, data);
+ }
+
+ public Commission(double data) {
+ super(12, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ComplianceID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ComplianceID.java
new file mode 100644
index 000000000..ff579377b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ComplianceID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ComplianceID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 376;
+
+ public ComplianceID() {
+ super(376);
+ }
+
+ public ComplianceID(String data) {
+ super(376, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Concession.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Concession.java
new file mode 100644
index 000000000..82ab08c60
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Concession.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Concession extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 238;
+
+ public Concession() {
+ super(238);
+ }
+
+ public Concession(java.math.BigDecimal data) {
+ super(238, data);
+ }
+
+ public Concession(double data) {
+ super(238, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmID.java
new file mode 100644
index 000000000..76ce2aeef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ConfirmID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 664;
+
+ public ConfirmID() {
+ super(664);
+ }
+
+ public ConfirmID(String data) {
+ super(664, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmRefID.java
new file mode 100644
index 000000000..3dc7cd47d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ConfirmRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 772;
+
+ public ConfirmRefID() {
+ super(772);
+ }
+
+ public ConfirmRefID(String data) {
+ super(772, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmRejReason.java
new file mode 100644
index 000000000..6f79fdfa9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmRejReason.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ConfirmRejReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 774;
+ public static final int MISMATCHED_ACCOUNT = 1;
+ public static final int MISSING_SETTLEMENT_INSTRUCTIONS = 2;
+ public static final int OTHER = 99;
+
+ public ConfirmRejReason() {
+ super(774);
+ }
+
+ public ConfirmRejReason(int data) {
+ super(774, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmReqID.java
new file mode 100644
index 000000000..dfc4f73c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ConfirmReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 859;
+
+ public ConfirmReqID() {
+ super(859);
+ }
+
+ public ConfirmReqID(String data) {
+ super(859, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmStatus.java
new file mode 100644
index 000000000..d8483fb2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmStatus.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ConfirmStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 665;
+ public static final int RECEIVED = 1;
+ public static final int MISMATCHED_ACCOUNT = 2;
+ public static final int MISSING_SETTLEMENT_INSTRUCTIONS = 3;
+ public static final int CONFIRMED = 4;
+ public static final int REQUEST_REJECTED = 5;
+
+ public ConfirmStatus() {
+ super(665);
+ }
+
+ public ConfirmStatus(int data) {
+ super(665, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmTransType.java
new file mode 100644
index 000000000..b78461287
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmTransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ConfirmTransType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 666;
+ public static final int NEW = 0;
+ public static final int REPLACE = 1;
+ public static final int CANCEL = 2;
+
+ public ConfirmTransType() {
+ super(666);
+ }
+
+ public ConfirmTransType(int data) {
+ super(666, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmType.java
new file mode 100644
index 000000000..911d81f76
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ConfirmType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ConfirmType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 773;
+ public static final int STATUS = 1;
+ public static final int CONFIRMATION = 2;
+ public static final int CONFIRMATION_REQUEST_REJECTED = 3;
+
+ public ConfirmType() {
+ super(773);
+ }
+
+ public ConfirmType(int data) {
+ super(773, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtCurr.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtCurr.java
new file mode 100644
index 000000000..4649ef97e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtCurr.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContAmtCurr extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 521;
+
+ public ContAmtCurr() {
+ super(521);
+ }
+
+ public ContAmtCurr(String data) {
+ super(521, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtType.java
new file mode 100644
index 000000000..db47907f5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtType.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ContAmtType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 519;
+ public static final int COMMISSION_AMOUNT = 1;
+ public static final int COMMISSION_PERCENT = 2;
+ public static final int INITIAL_CHARGE_AMOUNT = 3;
+ public static final int INITIAL_CHARGE_PERCENT = 4;
+ public static final int DISCOUNT_AMOUNT = 5;
+ public static final int DISCOUNT_PERCENT = 6;
+ public static final int DILUTION_LEVY_AMOUNT = 7;
+ public static final int DILUTION_LEVY_PERCENT = 8;
+ public static final int EXIT_CHARGE_AMOUNT = 9;
+
+ public ContAmtType() {
+ super(519);
+ }
+
+ public ContAmtType(int data) {
+ super(519, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtValue.java
new file mode 100644
index 000000000..610c33c63
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContAmtValue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class ContAmtValue extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 520;
+
+ public ContAmtValue() {
+ super(520);
+ }
+
+ public ContAmtValue(double data) {
+ super(520, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraBroker.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraBroker.java
new file mode 100644
index 000000000..8adc9d916
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraBroker.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContraBroker extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 375;
+
+ public ContraBroker() {
+ super(375);
+ }
+
+ public ContraBroker(String data) {
+ super(375, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraLegRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraLegRefID.java
new file mode 100644
index 000000000..2cb9f28a0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraLegRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContraLegRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 655;
+
+ public ContraLegRefID() {
+ super(655);
+ }
+
+ public ContraLegRefID(String data) {
+ super(655, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTradeQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTradeQty.java
new file mode 100644
index 000000000..109043974
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTradeQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ContraTradeQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 437;
+
+ public ContraTradeQty() {
+ super(437);
+ }
+
+ public ContraTradeQty(java.math.BigDecimal data) {
+ super(437, data);
+ }
+
+ public ContraTradeQty(double data) {
+ super(437, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTradeTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTradeTime.java
new file mode 100644
index 000000000..d326a76c0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTradeTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ContraTradeTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 438;
+
+ public ContraTradeTime() {
+ super(438);
+ }
+
+ public ContraTradeTime(LocalDateTime data) {
+ super(438, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTrader.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTrader.java
new file mode 100644
index 000000000..67cc95032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraTrader.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContraTrader extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 337;
+
+ public ContraTrader() {
+ super(337);
+ }
+
+ public ContraTrader(String data) {
+ super(337, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContractMultiplier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContractMultiplier.java
new file mode 100644
index 000000000..855090db8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContractMultiplier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class ContractMultiplier extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 231;
+
+ public ContractMultiplier() {
+ super(231);
+ }
+
+ public ContractMultiplier(double data) {
+ super(231, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContractSettlMonth.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContractSettlMonth.java
new file mode 100644
index 000000000..8092c8cc0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContractSettlMonth.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ContractSettlMonth extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 667;
+
+ public ContractSettlMonth() {
+ super(667);
+ }
+
+ public ContractSettlMonth(String data) {
+ super(667, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraryInstructionIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraryInstructionIndicator.java
new file mode 100644
index 000000000..1747c306e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ContraryInstructionIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ContraryInstructionIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 719;
+
+ public ContraryInstructionIndicator() {
+ super(719);
+ }
+
+ public ContraryInstructionIndicator(boolean data) {
+ super(719, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CopyMsgIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CopyMsgIndicator.java
new file mode 100644
index 000000000..a72ba97c1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CopyMsgIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class CopyMsgIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 797;
+
+ public CopyMsgIndicator() {
+ super(797);
+ }
+
+ public CopyMsgIndicator(boolean data) {
+ super(797, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CorporateAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CorporateAction.java
new file mode 100644
index 000000000..322f1fec4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CorporateAction.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CorporateAction extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 292;
+ public static final String EX_DIVIDEND = "A";
+ public static final String EX_DISTRIBUTION = "B";
+ public static final String EX_RIGHTS = "C";
+ public static final String NEW = "D";
+ public static final String EX_INTEREST = "E";
+
+ public CorporateAction() {
+ super(292);
+ }
+
+ public CorporateAction(String data) {
+ super(292, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Country.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Country.java
new file mode 100644
index 000000000..3ae3c1de8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Country.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Country extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 421;
+
+ public Country() {
+ super(421);
+ }
+
+ public Country(String data) {
+ super(421, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CountryOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CountryOfIssue.java
new file mode 100644
index 000000000..14f348f20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CountryOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CountryOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 470;
+
+ public CountryOfIssue() {
+ super(470);
+ }
+
+ public CountryOfIssue(String data) {
+ super(470, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CouponPaymentDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CouponPaymentDate.java
new file mode 100644
index 000000000..abb291646
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CouponPaymentDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CouponPaymentDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 224;
+
+ public CouponPaymentDate() {
+ super(224);
+ }
+
+ public CouponPaymentDate(String data) {
+ super(224, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CouponRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CouponRate.java
new file mode 100644
index 000000000..6b1268816
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CouponRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class CouponRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 223;
+
+ public CouponRate() {
+ super(223);
+ }
+
+ public CouponRate(double data) {
+ super(223, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CoveredOrUncovered.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CoveredOrUncovered.java
new file mode 100644
index 000000000..50dcec248
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CoveredOrUncovered.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CoveredOrUncovered extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 203;
+ public static final int COVERED = 0;
+ public static final int UNCOVERED = 1;
+
+ public CoveredOrUncovered() {
+ super(203);
+ }
+
+ public CoveredOrUncovered(int data) {
+ super(203, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CreditRating.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CreditRating.java
new file mode 100644
index 000000000..a2acb5025
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CreditRating.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CreditRating extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 255;
+
+ public CreditRating() {
+ super(255);
+ }
+
+ public CreditRating(String data) {
+ super(255, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossID.java
new file mode 100644
index 000000000..39f215ce1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class CrossID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 548;
+
+ public CrossID() {
+ super(548);
+ }
+
+ public CrossID(String data) {
+ super(548, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossPercent.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossPercent.java
new file mode 100644
index 000000000..771ef245c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossPercent.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class CrossPercent extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 413;
+
+ public CrossPercent() {
+ super(413);
+ }
+
+ public CrossPercent(double data) {
+ super(413, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossPrioritization.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossPrioritization.java
new file mode 100644
index 000000000..a093d5bfc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossPrioritization.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CrossPrioritization extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 550;
+ public static final int NONE = 0;
+ public static final int BUY_SIDE_IS_PRIORITIZED = 1;
+ public static final int SELL_SIDE_IS_PRIORITIZED = 2;
+
+ public CrossPrioritization() {
+ super(550);
+ }
+
+ public CrossPrioritization(int data) {
+ super(550, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossType.java
new file mode 100644
index 000000000..3535dea9e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CrossType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CrossType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 549;
+ public static final int CROSS_TRADE_WHICH_IS_EXECUTED_COMPLETELY_OR_NOT = 1;
+ public static final int CROSS_TRADE_WHICH_IS_EXECUTED_PARTIALLY_AND_THE_REST_IS_CANCELLED = 2;
+ public static final int CROSS_TRADE_WHICH_IS_PARTIALLY_EXECUTED_WITH_THE_UNFILLED_PORTIONS_REMAINING_ACTIVE = 3;
+ public static final int CROSS_TRADE_IS_EXECUTED_WITH_EXISTING_ORDERS_WITH_THE_SAME_PRICE = 4;
+
+ public CrossType() {
+ super(549);
+ }
+
+ public CrossType(int data) {
+ super(549, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CumQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CumQty.java
new file mode 100644
index 000000000..f98927e2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CumQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CumQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 14;
+
+ public CumQty() {
+ super(14);
+ }
+
+ public CumQty(java.math.BigDecimal data) {
+ super(14, data);
+ }
+
+ public CumQty(double data) {
+ super(14, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Currency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Currency.java
new file mode 100644
index 000000000..8379f4f65
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Currency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Currency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 15;
+
+ public Currency() {
+ super(15);
+ }
+
+ public Currency(String data) {
+ super(15, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CustOrderCapacity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CustOrderCapacity.java
new file mode 100644
index 000000000..a98728ab8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CustOrderCapacity.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CustOrderCapacity extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 582;
+ public static final int MEMBER_TRADING_FOR_THEIR_OWN_ACCOUNT = 1;
+ public static final int CLEARING_FIRM_TRADING_FOR_ITS_PROPRIETARY_ACCOUNT = 2;
+ public static final int MEMBER_TRADING_FOR_ANOTHER_MEMBER = 3;
+ public static final int ALL_OTHER = 4;
+
+ public CustOrderCapacity() {
+ super(582);
+ }
+
+ public CustOrderCapacity(int data) {
+ super(582, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlQty.java
new file mode 100644
index 000000000..d3cd9eab5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class CxlQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 84;
+
+ public CxlQty() {
+ super(84);
+ }
+
+ public CxlQty(java.math.BigDecimal data) {
+ super(84, data);
+ }
+
+ public CxlQty(double data) {
+ super(84, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlRejReason.java
new file mode 100644
index 000000000..75dbd919a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlRejReason.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class CxlRejReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 102;
+ public static final int TOO_LATE_TO_CANCEL = 0;
+ public static final int UNKNOWN_ORDER = 1;
+ public static final int BROKER_EXCHANGE_OPTION = 2;
+ public static final int ORDER_ALREADY_IN_PENDING_CANCEL_OR_PENDING_REPLACE_STATUS = 3;
+ public static final int UNABLE_TO_PROCESS_ORDER_MASS_CANCEL_REQUEST = 4;
+ public static final int ORIGORDMODTIME_DID_NOT_MATCH_LAST_TRANSACTTIME_OF_ORDER = 5;
+ public static final int DUPLICATE_CLORDID_RECEIVED = 6;
+ public static final int OTHER = 99;
+
+ public CxlRejReason() {
+ super(102);
+ }
+
+ public CxlRejReason(int data) {
+ super(102, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlRejResponseTo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlRejResponseTo.java
new file mode 100644
index 000000000..daf98490b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/CxlRejResponseTo.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class CxlRejResponseTo extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 434;
+ public static final char ORDER_CANCEL_REQUEST = '1';
+ public static final char ORDER_CANCEL_REPLACE_REQUEST = '2';
+
+ public CxlRejResponseTo() {
+ super(434);
+ }
+
+ public CxlRejResponseTo(char data) {
+ super(434, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DKReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DKReason.java
new file mode 100644
index 000000000..956034597
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DKReason.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DKReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 127;
+ public static final char UNKNOWN_SYMBOL = 'A';
+ public static final char WRONG_SIDE = 'B';
+ public static final char QUANTITY_EXCEEDS_ORDER = 'C';
+ public static final char NO_MATCHING_ORDER = 'D';
+ public static final char PRICE_EXCEEDS_LIMIT = 'E';
+ public static final char CALCULATION_DIFFERENCE = 'F';
+ public static final char OTHER = 'Z';
+
+ public DKReason() {
+ super(127);
+ }
+
+ public DKReason(char data) {
+ super(127, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DateOfBirth.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DateOfBirth.java
new file mode 100644
index 000000000..71d51ce3c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DateOfBirth.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DateOfBirth extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 486;
+
+ public DateOfBirth() {
+ super(486);
+ }
+
+ public DateOfBirth(String data) {
+ super(486, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DatedDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DatedDate.java
new file mode 100644
index 000000000..a35a57a31
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DatedDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DatedDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 873;
+
+ public DatedDate() {
+ super(873);
+ }
+
+ public DatedDate(String data) {
+ super(873, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayAvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayAvgPx.java
new file mode 100644
index 000000000..2eb8476ee
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayAvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DayAvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 426;
+
+ public DayAvgPx() {
+ super(426);
+ }
+
+ public DayAvgPx(java.math.BigDecimal data) {
+ super(426, data);
+ }
+
+ public DayAvgPx(double data) {
+ super(426, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayBookingInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayBookingInst.java
new file mode 100644
index 000000000..eed325b3e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayBookingInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DayBookingInst extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 589;
+ public static final char CAN_TRIGGER_BOOKING_WITHOUT_REFERENCE_TO_THE_ORDER_INITIATOR = '0';
+ public static final char SPEAK_WITH_ORDER_INITIATOR_BEFORE_BOOKING = '1';
+ public static final char ACCUMULATE = '2';
+
+ public DayBookingInst() {
+ super(589);
+ }
+
+ public DayBookingInst(char data) {
+ super(589, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayCumQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayCumQty.java
new file mode 100644
index 000000000..d735eb60e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayCumQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DayCumQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 425;
+
+ public DayCumQty() {
+ super(425);
+ }
+
+ public DayCumQty(java.math.BigDecimal data) {
+ super(425, data);
+ }
+
+ public DayCumQty(double data) {
+ super(425, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayOrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayOrderQty.java
new file mode 100644
index 000000000..c38e27aa9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DayOrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DayOrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 424;
+
+ public DayOrderQty() {
+ super(424);
+ }
+
+ public DayOrderQty(java.math.BigDecimal data) {
+ super(424, data);
+ }
+
+ public DayOrderQty(double data) {
+ super(424, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DefBidSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DefBidSize.java
new file mode 100644
index 000000000..e65df4a7c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DefBidSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DefBidSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 293;
+
+ public DefBidSize() {
+ super(293);
+ }
+
+ public DefBidSize(java.math.BigDecimal data) {
+ super(293, data);
+ }
+
+ public DefBidSize(double data) {
+ super(293, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DefOfferSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DefOfferSize.java
new file mode 100644
index 000000000..52d7e0daf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DefOfferSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DefOfferSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 294;
+
+ public DefOfferSize() {
+ super(294);
+ }
+
+ public DefOfferSize(java.math.BigDecimal data) {
+ super(294, data);
+ }
+
+ public DefOfferSize(double data) {
+ super(294, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeleteReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeleteReason.java
new file mode 100644
index 000000000..3b44aed20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeleteReason.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DeleteReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 285;
+ public static final char CANCELATION_TRADE_BUST = '0';
+ public static final char ERROR = '1';
+
+ public DeleteReason() {
+ super(285);
+ }
+
+ public DeleteReason(char data) {
+ super(285, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToCompID.java
new file mode 100644
index 000000000..77c3bef64
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliverToCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 128;
+
+ public DeliverToCompID() {
+ super(128);
+ }
+
+ public DeliverToCompID(String data) {
+ super(128, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToLocationID.java
new file mode 100644
index 000000000..f3b564940
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliverToLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 145;
+
+ public DeliverToLocationID() {
+ super(145);
+ }
+
+ public DeliverToLocationID(String data) {
+ super(145, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToSubID.java
new file mode 100644
index 000000000..835976473
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliverToSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliverToSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 129;
+
+ public DeliverToSubID() {
+ super(129);
+ }
+
+ public DeliverToSubID(String data) {
+ super(129, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryDate.java
new file mode 100644
index 000000000..dba2bf3ca
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeliveryDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 743;
+
+ public DeliveryDate() {
+ super(743);
+ }
+
+ public DeliveryDate(String data) {
+ super(743, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryForm.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryForm.java
new file mode 100644
index 000000000..5f5d92c15
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryForm.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DeliveryForm extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 668;
+ public static final int BOOKENTRY = 1;
+ public static final int BEARER = 2;
+
+ public DeliveryForm() {
+ super(668);
+ }
+
+ public DeliveryForm(int data) {
+ super(668, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryType.java
new file mode 100644
index 000000000..ac4474614
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeliveryType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DeliveryType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 919;
+ public static final int VERSUS_PAYMENT = 0;
+ public static final int FREE = 1;
+ public static final int TRI_PARTY = 2;
+ public static final int HOLD_IN_CUSTODY = 3;
+
+ public DeliveryType() {
+ super(919);
+ }
+
+ public DeliveryType(int data) {
+ super(919, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Designation.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Designation.java
new file mode 100644
index 000000000..d16a24f2f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Designation.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Designation extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 494;
+
+ public Designation() {
+ super(494);
+ }
+
+ public Designation(String data) {
+ super(494, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeskID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeskID.java
new file mode 100644
index 000000000..3d45073d0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DeskID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class DeskID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 284;
+
+ public DeskID() {
+ super(284);
+ }
+
+ public DeskID(String data) {
+ super(284, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionInst.java
new file mode 100644
index 000000000..0b657f890
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionInst.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DiscretionInst extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 388;
+ public static final char RELATED_TO_DISPLAYED_PRICE = '0';
+ public static final char RELATED_TO_MARKET_PRICE = '1';
+ public static final char RELATED_TO_PRIMARY_PRICE = '2';
+ public static final char RELATED_TO_LOCAL_PRIMARY_PRICE = '3';
+ public static final char RELATED_TO_MIDPOINT_PRICE = '4';
+ public static final char RELATED_TO_LAST_TRADE_PRICE = '5';
+ public static final char RELATED_TO_VWAP = '6';
+
+ public DiscretionInst() {
+ super(388);
+ }
+
+ public DiscretionInst(char data) {
+ super(388, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionLimitType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionLimitType.java
new file mode 100644
index 000000000..962ee1063
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionLimitType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DiscretionLimitType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 843;
+ public static final int OR_BETTER = 0;
+ public static final int STRICT = 1;
+ public static final int OR_WORSE = 2;
+
+ public DiscretionLimitType() {
+ super(843);
+ }
+
+ public DiscretionLimitType(int data) {
+ super(843, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionMoveType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionMoveType.java
new file mode 100644
index 000000000..44491d2d1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionMoveType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DiscretionMoveType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 841;
+ public static final int FLOATING = 0;
+ public static final int FIXED = 1;
+
+ public DiscretionMoveType() {
+ super(841);
+ }
+
+ public DiscretionMoveType(int data) {
+ super(841, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionOffsetType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionOffsetType.java
new file mode 100644
index 000000000..6b9c137d6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionOffsetType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DiscretionOffsetType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 842;
+ public static final int PRICE = 0;
+ public static final int BASIS_POINTS = 1;
+ public static final int TICKS = 2;
+ public static final int PRICE_TIER_LEVEL = 3;
+
+ public DiscretionOffsetType() {
+ super(842);
+ }
+
+ public DiscretionOffsetType(int data) {
+ super(842, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionOffsetValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionOffsetValue.java
new file mode 100644
index 000000000..beda8052a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionOffsetValue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class DiscretionOffsetValue extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 389;
+
+ public DiscretionOffsetValue() {
+ super(389);
+ }
+
+ public DiscretionOffsetValue(double data) {
+ super(389, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionPrice.java
new file mode 100644
index 000000000..dd6a20dbc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class DiscretionPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 845;
+
+ public DiscretionPrice() {
+ super(845);
+ }
+
+ public DiscretionPrice(java.math.BigDecimal data) {
+ super(845, data);
+ }
+
+ public DiscretionPrice(double data) {
+ super(845, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionRoundDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionRoundDirection.java
new file mode 100644
index 000000000..212ccf5a7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionRoundDirection.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DiscretionRoundDirection extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 844;
+ public static final int MORE_AGGRESSIVE = 1;
+ public static final int MORE_PASSIVE = 2;
+
+ public DiscretionRoundDirection() {
+ super(844);
+ }
+
+ public DiscretionRoundDirection(int data) {
+ super(844, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionScope.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionScope.java
new file mode 100644
index 000000000..5d62f085e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DiscretionScope.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DiscretionScope extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 846;
+ public static final int LOCAL = 1;
+ public static final int NATIONAL = 2;
+ public static final int GLOBAL = 3;
+ public static final int NATIONAL_EXCLUDING_LOCAL = 4;
+
+ public DiscretionScope() {
+ super(846);
+ }
+
+ public DiscretionScope(int data) {
+ super(846, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DistribPaymentMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DistribPaymentMethod.java
new file mode 100644
index 000000000..01b9806df
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DistribPaymentMethod.java
@@ -0,0 +1,50 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class DistribPaymentMethod extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 477;
+ public static final int CREST = 1;
+ public static final int NSCC = 2;
+ public static final int EUROCLEAR = 3;
+ public static final int CLEARSTREAM = 4;
+ public static final int CHEQUE = 5;
+ public static final int TELEGRAPHIC_TRANSFER = 6;
+ public static final int FEDWIRE = 7;
+ public static final int DIRECT_CREDIT = 8;
+ public static final int ACH_CREDIT = 9;
+ public static final int BPAY = 10;
+ public static final int HIGH_VALUE_CLEARING_SYSTEM = 11;
+ public static final int REINVEST_IN_FUND = 12;
+
+ public DistribPaymentMethod() {
+ super(477);
+ }
+
+ public DistribPaymentMethod(int data) {
+ super(477, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DistribPercentage.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DistribPercentage.java
new file mode 100644
index 000000000..c31c16749
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DistribPercentage.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class DistribPercentage extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 512;
+
+ public DistribPercentage() {
+ super(512);
+ }
+
+ public DistribPercentage(double data) {
+ super(512, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DlvyInstType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DlvyInstType.java
new file mode 100644
index 000000000..291357ac2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DlvyInstType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class DlvyInstType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 787;
+ public static final char SECURITIES = 'S';
+ public static final char CASH = 'C';
+
+ public DlvyInstType() {
+ super(787);
+ }
+
+ public DlvyInstType(char data) {
+ super(787, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DueToRelated.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DueToRelated.java
new file mode 100644
index 000000000..c22914033
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/DueToRelated.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class DueToRelated extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 329;
+
+ public DueToRelated() {
+ super(329);
+ }
+
+ public DueToRelated(boolean data) {
+ super(329, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EFPTrackingError.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EFPTrackingError.java
new file mode 100644
index 000000000..97dbfd497
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EFPTrackingError.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class EFPTrackingError extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 405;
+
+ public EFPTrackingError() {
+ super(405);
+ }
+
+ public EFPTrackingError(double data) {
+ super(405, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EffectiveTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EffectiveTime.java
new file mode 100644
index 000000000..99d00e071
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EffectiveTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class EffectiveTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 168;
+
+ public EffectiveTime() {
+ super(168);
+ }
+
+ public EffectiveTime(LocalDateTime data) {
+ super(168, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EmailThreadID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EmailThreadID.java
new file mode 100644
index 000000000..0442d980b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EmailThreadID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EmailThreadID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 164;
+
+ public EmailThreadID() {
+ super(164);
+ }
+
+ public EmailThreadID(String data) {
+ super(164, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EmailType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EmailType.java
new file mode 100644
index 000000000..bd3db3a44
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EmailType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class EmailType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 94;
+ public static final char NEW = '0';
+ public static final char REPLY = '1';
+ public static final char ADMIN_REPLY = '2';
+
+ public EmailType() {
+ super(94);
+ }
+
+ public EmailType(char data) {
+ super(94, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedAllocText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedAllocText.java
new file mode 100644
index 000000000..e47731af3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedAllocText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedAllocText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 361;
+
+ public EncodedAllocText() {
+ super(361);
+ }
+
+ public EncodedAllocText(String data) {
+ super(361, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedAllocTextLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedAllocTextLen.java
new file mode 100644
index 000000000..eb79ecaa9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedAllocTextLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedAllocTextLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 360;
+
+ public EncodedAllocTextLen() {
+ super(360);
+ }
+
+ public EncodedAllocTextLen(int data) {
+ super(360, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedHeadline.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedHeadline.java
new file mode 100644
index 000000000..9ac3fef32
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedHeadline.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedHeadline extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 359;
+
+ public EncodedHeadline() {
+ super(359);
+ }
+
+ public EncodedHeadline(String data) {
+ super(359, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedHeadlineLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedHeadlineLen.java
new file mode 100644
index 000000000..ad672a35a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedHeadlineLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedHeadlineLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 358;
+
+ public EncodedHeadlineLen() {
+ super(358);
+ }
+
+ public EncodedHeadlineLen(int data) {
+ super(358, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedIssuer.java
new file mode 100644
index 000000000..5801b7a7e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 349;
+
+ public EncodedIssuer() {
+ super(349);
+ }
+
+ public EncodedIssuer(String data) {
+ super(349, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedIssuerLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedIssuerLen.java
new file mode 100644
index 000000000..36990157f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedIssuerLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedIssuerLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 348;
+
+ public EncodedIssuerLen() {
+ super(348);
+ }
+
+ public EncodedIssuerLen(int data) {
+ super(348, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegIssuer.java
new file mode 100644
index 000000000..b3271eba1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedLegIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 619;
+
+ public EncodedLegIssuer() {
+ super(619);
+ }
+
+ public EncodedLegIssuer(String data) {
+ super(619, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegIssuerLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegIssuerLen.java
new file mode 100644
index 000000000..2ef951a9a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegIssuerLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedLegIssuerLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 618;
+
+ public EncodedLegIssuerLen() {
+ super(618);
+ }
+
+ public EncodedLegIssuerLen(int data) {
+ super(618, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegSecurityDesc.java
new file mode 100644
index 000000000..9e1ad784d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedLegSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 622;
+
+ public EncodedLegSecurityDesc() {
+ super(622);
+ }
+
+ public EncodedLegSecurityDesc(String data) {
+ super(622, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegSecurityDescLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegSecurityDescLen.java
new file mode 100644
index 000000000..d8f326eef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedLegSecurityDescLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedLegSecurityDescLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 621;
+
+ public EncodedLegSecurityDescLen() {
+ super(621);
+ }
+
+ public EncodedLegSecurityDescLen(int data) {
+ super(621, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListExecInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListExecInst.java
new file mode 100644
index 000000000..bd2fd695b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListExecInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedListExecInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 353;
+
+ public EncodedListExecInst() {
+ super(353);
+ }
+
+ public EncodedListExecInst(String data) {
+ super(353, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListExecInstLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListExecInstLen.java
new file mode 100644
index 000000000..f23846d5a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListExecInstLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedListExecInstLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 352;
+
+ public EncodedListExecInstLen() {
+ super(352);
+ }
+
+ public EncodedListExecInstLen(int data) {
+ super(352, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListStatusText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListStatusText.java
new file mode 100644
index 000000000..ab7f5fde6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListStatusText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedListStatusText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 446;
+
+ public EncodedListStatusText() {
+ super(446);
+ }
+
+ public EncodedListStatusText(String data) {
+ super(446, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListStatusTextLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListStatusTextLen.java
new file mode 100644
index 000000000..ae1338da1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedListStatusTextLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedListStatusTextLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 445;
+
+ public EncodedListStatusTextLen() {
+ super(445);
+ }
+
+ public EncodedListStatusTextLen(int data) {
+ super(445, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSecurityDesc.java
new file mode 100644
index 000000000..828fc0648
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 351;
+
+ public EncodedSecurityDesc() {
+ super(351);
+ }
+
+ public EncodedSecurityDesc(String data) {
+ super(351, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSecurityDescLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSecurityDescLen.java
new file mode 100644
index 000000000..1ae7613d4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSecurityDescLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedSecurityDescLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 350;
+
+ public EncodedSecurityDescLen() {
+ super(350);
+ }
+
+ public EncodedSecurityDescLen(int data) {
+ super(350, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSubject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSubject.java
new file mode 100644
index 000000000..93c86bffd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSubject.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedSubject extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 357;
+
+ public EncodedSubject() {
+ super(357);
+ }
+
+ public EncodedSubject(String data) {
+ super(357, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSubjectLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSubjectLen.java
new file mode 100644
index 000000000..9e371eecf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedSubjectLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedSubjectLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 356;
+
+ public EncodedSubjectLen() {
+ super(356);
+ }
+
+ public EncodedSubjectLen(int data) {
+ super(356, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedText.java
new file mode 100644
index 000000000..442e7f9c0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 355;
+
+ public EncodedText() {
+ super(355);
+ }
+
+ public EncodedText(String data) {
+ super(355, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedTextLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedTextLen.java
new file mode 100644
index 000000000..987a09475
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedTextLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedTextLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 354;
+
+ public EncodedTextLen() {
+ super(354);
+ }
+
+ public EncodedTextLen(int data) {
+ super(354, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingIssuer.java
new file mode 100644
index 000000000..763d70c93
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedUnderlyingIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 363;
+
+ public EncodedUnderlyingIssuer() {
+ super(363);
+ }
+
+ public EncodedUnderlyingIssuer(String data) {
+ super(363, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingIssuerLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingIssuerLen.java
new file mode 100644
index 000000000..15bc3b273
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingIssuerLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedUnderlyingIssuerLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 362;
+
+ public EncodedUnderlyingIssuerLen() {
+ super(362);
+ }
+
+ public EncodedUnderlyingIssuerLen(int data) {
+ super(362, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingSecurityDesc.java
new file mode 100644
index 000000000..27c1f2e49
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EncodedUnderlyingSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 365;
+
+ public EncodedUnderlyingSecurityDesc() {
+ super(365);
+ }
+
+ public EncodedUnderlyingSecurityDesc(String data) {
+ super(365, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingSecurityDescLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingSecurityDescLen.java
new file mode 100644
index 000000000..da82ed039
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncodedUnderlyingSecurityDescLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncodedUnderlyingSecurityDescLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 364;
+
+ public EncodedUnderlyingSecurityDescLen() {
+ super(364);
+ }
+
+ public EncodedUnderlyingSecurityDescLen(int data) {
+ super(364, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncryptMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncryptMethod.java
new file mode 100644
index 000000000..7d8c03066
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EncryptMethod.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EncryptMethod extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 98;
+ public static final int NONE_OTHER = 0;
+ public static final int PKCS = 1;
+ public static final int DES = 2;
+ public static final int PKCS_DES = 3;
+ public static final int PGP_DES = 4;
+ public static final int PGP_DES_MD5 = 5;
+ public static final int PEM_DES_MD5 = 6;
+
+ public EncryptMethod() {
+ super(98);
+ }
+
+ public EncryptMethod(int data) {
+ super(98, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndAccruedInterestAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndAccruedInterestAmt.java
new file mode 100644
index 000000000..9dc461518
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndAccruedInterestAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class EndAccruedInterestAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 920;
+
+ public EndAccruedInterestAmt() {
+ super(920);
+ }
+
+ public EndAccruedInterestAmt(java.math.BigDecimal data) {
+ super(920, data);
+ }
+
+ public EndAccruedInterestAmt(double data) {
+ super(920, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndCash.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndCash.java
new file mode 100644
index 000000000..2bb1a509e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndCash.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class EndCash extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 922;
+
+ public EndCash() {
+ super(922);
+ }
+
+ public EndCash(java.math.BigDecimal data) {
+ super(922, data);
+ }
+
+ public EndCash(double data) {
+ super(922, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndDate.java
new file mode 100644
index 000000000..944005049
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EndDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 917;
+
+ public EndDate() {
+ super(917);
+ }
+
+ public EndDate(String data) {
+ super(917, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndSeqNo.java
new file mode 100644
index 000000000..189a5b67c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EndSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EndSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 16;
+
+ public EndSeqNo() {
+ super(16);
+ }
+
+ public EndSeqNo(int data) {
+ super(16, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventDate.java
new file mode 100644
index 000000000..14c1c4b20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EventDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 866;
+
+ public EventDate() {
+ super(866);
+ }
+
+ public EventDate(String data) {
+ super(866, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventPx.java
new file mode 100644
index 000000000..c5c68025e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class EventPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 867;
+
+ public EventPx() {
+ super(867);
+ }
+
+ public EventPx(java.math.BigDecimal data) {
+ super(867, data);
+ }
+
+ public EventPx(double data) {
+ super(867, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventText.java
new file mode 100644
index 000000000..26e183264
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class EventText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 868;
+
+ public EventText() {
+ super(868);
+ }
+
+ public EventText(String data) {
+ super(868, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventType.java
new file mode 100644
index 000000000..b580daaff
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/EventType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class EventType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 865;
+ public static final int PUT = 1;
+ public static final int CALL = 2;
+ public static final int TENDER = 3;
+ public static final int SINKING_FUND_CALL = 4;
+ public static final int OTHER = 99;
+
+ public EventType() {
+ super(865);
+ }
+
+ public EventType(int data) {
+ super(865, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExDate.java
new file mode 100644
index 000000000..eb81e85bc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 230;
+
+ public ExDate() {
+ super(230);
+ }
+
+ public ExDate(String data) {
+ super(230, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExDestination.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExDestination.java
new file mode 100644
index 000000000..b1f55c8a1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExDestination.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExDestination extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 100;
+
+ public ExDestination() {
+ super(100);
+ }
+
+ public ExDestination(String data) {
+ super(100, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExchangeForPhysical.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExchangeForPhysical.java
new file mode 100644
index 000000000..04d3de4cb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExchangeForPhysical.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ExchangeForPhysical extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 411;
+
+ public ExchangeForPhysical() {
+ super(411);
+ }
+
+ public ExchangeForPhysical(boolean data) {
+ super(411, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExchangeRule.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExchangeRule.java
new file mode 100644
index 000000000..3cc6024cd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExchangeRule.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExchangeRule extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 825;
+
+ public ExchangeRule() {
+ super(825);
+ }
+
+ public ExchangeRule(String data) {
+ super(825, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecID.java
new file mode 100644
index 000000000..bad7cebe6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 17;
+
+ public ExecID() {
+ super(17);
+ }
+
+ public ExecID(String data) {
+ super(17, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecInst.java
new file mode 100644
index 000000000..35c09718e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecInst.java
@@ -0,0 +1,79 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 18;
+ public static final String NOT_HELD = "1";
+ public static final String WORK = "2";
+ public static final String GO_ALONG = "3";
+ public static final String OVER_THE_DAY = "4";
+ public static final String HELD = "5";
+ public static final String PARTICIPATE_DONT_INITIATE = "6";
+ public static final String STRICT_SCALE = "7";
+ public static final String TRY_TO_SCALE = "8";
+ public static final String STAY_ON_BIDSIDE = "9";
+ public static final String STAY_ON_OFFERSIDE = "0";
+ public static final String NO_CROSS = "A";
+ public static final String OK_TO_CROSS = "B";
+ public static final String CALL_FIRST = "C";
+ public static final String PERCENT_OF_VOLUME = "D";
+ public static final String DO_NOT_INCREASE = "E";
+ public static final String DO_NOT_REDUCE = "F";
+ public static final String ALL_OR_NONE = "G";
+ public static final String REINSTATE_ON_SYSTEM_FAILURE = "H";
+ public static final String INSTITUTIONS_ONLY = "I";
+ public static final String REINSTATE_ON_TRADING_HALT = "J";
+ public static final String CANCEL_ON_TRADING_HALT = "K";
+ public static final String LAST_PEG = "L";
+ public static final String MID_PRICE = "M";
+ public static final String NON_NEGOTIABLE = "N";
+ public static final String OPENING_PEG = "O";
+ public static final String MARKET_PEG = "P";
+ public static final String CANCEL_ON_SYSTEM_FAILURE = "Q";
+ public static final String PRIMARY_PEG = "R";
+ public static final String SUSPEND = "S";
+ public static final String FIXED_PEG_TO_LOCAL_BEST_BID_OR_OFFER_AT_TIME_OF_ORDER = "T";
+ public static final String CUSTOMER_DISPLAY_INSTRUCTION = "U";
+ public static final String NETTING = "V";
+ public static final String PEG_TO_VWAP = "W";
+ public static final String TRADE_ALONG = "X";
+ public static final String TRY_TO_STOP = "Y";
+ public static final String CANCEL_IF_NOT_BEST = "Z";
+ public static final String TRAILING_STOP_PEG = "a";
+ public static final String STRICT_LIMIT = "b";
+ public static final String IGNORE_PRICE_VALIDITY_CHECKS = "c";
+ public static final String PEG_TO_LIMIT_PRICE = "d";
+ public static final String WORK_TO_TARGET_STRATEGY = "e";
+
+ public ExecInst() {
+ super(18);
+ }
+
+ public ExecInst(String data) {
+ super(18, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecPriceAdjustment.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecPriceAdjustment.java
new file mode 100644
index 000000000..7772313fa
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecPriceAdjustment.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class ExecPriceAdjustment extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 485;
+
+ public ExecPriceAdjustment() {
+ super(485);
+ }
+
+ public ExecPriceAdjustment(double data) {
+ super(485, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecPriceType.java
new file mode 100644
index 000000000..ce6192050
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecPriceType.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ExecPriceType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 484;
+ public static final char BID_PRICE = 'B';
+ public static final char CREATION_PRICE = 'C';
+ public static final char CREATION_PRICE_PLUS_ADJUSTMENT_PERCENT = 'D';
+ public static final char CREATION_PRICE_PLUS_ADJUSTMENT_AMOUNT = 'E';
+ public static final char OFFER_PRICE = 'O';
+ public static final char OFFER_PRICE_MINUS_ADJUSTMENT_PERCENT = 'P';
+ public static final char OFFER_PRICE_MINUS_ADJUSTMENT_AMOUNT = 'Q';
+ public static final char SINGLE_PRICE = 'S';
+
+ public ExecPriceType() {
+ super(484);
+ }
+
+ public ExecPriceType(char data) {
+ super(484, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecRefID.java
new file mode 100644
index 000000000..47a2f006e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExecRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 19;
+
+ public ExecRefID() {
+ super(19);
+ }
+
+ public ExecRefID(String data) {
+ super(19, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecRestatementReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecRestatementReason.java
new file mode 100644
index 000000000..ba2681f14
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecRestatementReason.java
@@ -0,0 +1,50 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ExecRestatementReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 378;
+ public static final int GT_CORPORATE_ACTION = 0;
+ public static final int GT_RENEWAL_RESTATEMENT = 1;
+ public static final int VERBAL_CHANGE = 2;
+ public static final int REPRICING_OF_ORDER = 3;
+ public static final int BROKER_OPTION = 4;
+ public static final int PARTIAL_DECLINE_OF_ORDERQTY = 5;
+ public static final int CANCEL_ON_TRADING_HALT = 6;
+ public static final int CANCEL_ON_SYSTEM_FAILURE = 7;
+ public static final int MARKET_OPTION = 8;
+ public static final int CANCELED_NOT_BEST = 9;
+ public static final int WAREHOUSE_RECAP = 10;
+ public static final int OTHER = 99;
+
+ public ExecRestatementReason() {
+ super(378);
+ }
+
+ public ExecRestatementReason(int data) {
+ super(378, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecType.java
new file mode 100644
index 000000000..8fe65ba4c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecType.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ExecType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 150;
+ public static final char NEW = '0';
+ public static final char PARTIAL_FILL = '1';
+ public static final char FILL = '2';
+ public static final char DONE_FOR_DAY = '3';
+ public static final char CANCELED = '4';
+ public static final char REPLACE = '5';
+ public static final char PENDING_CANCEL = '6';
+ public static final char STOPPED = '7';
+ public static final char REJECTED = '8';
+ public static final char SUSPENDED = '9';
+ public static final char PENDING_NEW = 'A';
+ public static final char CALCULATED = 'B';
+ public static final char EXPIRED = 'C';
+ public static final char RESTATED = 'D';
+ public static final char PENDING_REPLACE = 'E';
+ public static final char TRADE = 'F';
+ public static final char TRADE_CORRECT = 'G';
+ public static final char TRADE_CANCEL = 'H';
+ public static final char ORDER_STATUS = 'I';
+
+ public ExecType() {
+ super(150);
+ }
+
+ public ExecType(char data) {
+ super(150, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecValuationPoint.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecValuationPoint.java
new file mode 100644
index 000000000..759c2b2bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExecValuationPoint.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ExecValuationPoint extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 515;
+
+ public ExecValuationPoint() {
+ super(515);
+ }
+
+ public ExecValuationPoint(LocalDateTime data) {
+ super(515, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExerciseMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExerciseMethod.java
new file mode 100644
index 000000000..d4c8da781
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExerciseMethod.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ExerciseMethod extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 747;
+ public static final char AUTOMATIC = 'A';
+ public static final char MANUAL = 'M';
+
+ public ExerciseMethod() {
+ super(747);
+ }
+
+ public ExerciseMethod(char data) {
+ super(747, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpirationCycle.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpirationCycle.java
new file mode 100644
index 000000000..5cde1ad5d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpirationCycle.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ExpirationCycle extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 827;
+ public static final int EXPIRE_ON_TRADING_SESSION_CLOSE = 0;
+ public static final int EXPIRE_ON_TRADING_SESSION_OPEN = 1;
+
+ public ExpirationCycle() {
+ super(827);
+ }
+
+ public ExpirationCycle(int data) {
+ super(827, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpireDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpireDate.java
new file mode 100644
index 000000000..6108bd3a3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpireDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ExpireDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 432;
+
+ public ExpireDate() {
+ super(432);
+ }
+
+ public ExpireDate(String data) {
+ super(432, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpireTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpireTime.java
new file mode 100644
index 000000000..f7c03d153
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ExpireTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ExpireTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 126;
+
+ public ExpireTime() {
+ super(126);
+ }
+
+ public ExpireTime(LocalDateTime data) {
+ super(126, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Factor.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Factor.java
new file mode 100644
index 000000000..3b1764d9c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Factor.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class Factor extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 228;
+
+ public Factor() {
+ super(228);
+ }
+
+ public Factor(double data) {
+ super(228, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FairValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FairValue.java
new file mode 100644
index 000000000..ec73b6089
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FairValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class FairValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 406;
+
+ public FairValue() {
+ super(406);
+ }
+
+ public FairValue(java.math.BigDecimal data) {
+ super(406, data);
+ }
+
+ public FairValue(double data) {
+ super(406, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FinancialStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FinancialStatus.java
new file mode 100644
index 000000000..30637a5e2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FinancialStatus.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class FinancialStatus extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 291;
+ public static final String BANKRUPT = "1";
+ public static final String PENDING_DELISTING = "2";
+
+ public FinancialStatus() {
+ super(291);
+ }
+
+ public FinancialStatus(String data) {
+ super(291, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ForexReq.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ForexReq.java
new file mode 100644
index 000000000..763fde078
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ForexReq.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ForexReq extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 121;
+
+ public ForexReq() {
+ super(121);
+ }
+
+ public ForexReq(boolean data) {
+ super(121, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FundRenewWaiv.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FundRenewWaiv.java
new file mode 100644
index 000000000..d57fba08d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/FundRenewWaiv.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class FundRenewWaiv extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 497;
+ public static final char YES = 'Y';
+ public static final char NO = 'N';
+
+ public FundRenewWaiv() {
+ super(497);
+ }
+
+ public FundRenewWaiv(char data) {
+ super(497, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GTBookingInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GTBookingInst.java
new file mode 100644
index 000000000..7ebc9c262
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GTBookingInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class GTBookingInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 427;
+ public static final int BOOK_OUT_ALL_TRADES_ON_DAY_OF_EXECUTION = 0;
+ public static final int ACCUMULATE_EXECUTIONS_UNTIL_ORDER_IS_FILLED_OR_EXPIRES = 1;
+ public static final int ACCUMULATE_UNTIL_VERBALLY_NOTIFIED_OTHERWISE = 2;
+
+ public GTBookingInst() {
+ super(427);
+ }
+
+ public GTBookingInst(int data) {
+ super(427, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GapFillFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GapFillFlag.java
new file mode 100644
index 000000000..2b8fc5810
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GapFillFlag.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class GapFillFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 123;
+
+ public GapFillFlag() {
+ super(123);
+ }
+
+ public GapFillFlag(boolean data) {
+ super(123, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GrossTradeAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GrossTradeAmt.java
new file mode 100644
index 000000000..587a5a30d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/GrossTradeAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class GrossTradeAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 381;
+
+ public GrossTradeAmt() {
+ super(381);
+ }
+
+ public GrossTradeAmt(java.math.BigDecimal data) {
+ super(381, data);
+ }
+
+ public GrossTradeAmt(double data) {
+ super(381, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HaltReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HaltReason.java
new file mode 100644
index 000000000..33dcf473d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HaltReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class HaltReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 327;
+ public static final char ORDER_IMBALANCE = 'I';
+ public static final char EQUIPMENT_CHANGEOVER = 'X';
+ public static final char NEWS_PENDING = 'P';
+ public static final char NEWS_DISSEMINATION = 'D';
+ public static final char ORDER_INFLUX = 'E';
+ public static final char ADDITIONAL_INFORMATION = 'M';
+
+ public HaltReason() {
+ super(327);
+ }
+
+ public HaltReason(char data) {
+ super(327, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HandlInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HandlInst.java
new file mode 100644
index 000000000..7ccddafe3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HandlInst.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class HandlInst extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 21;
+ public static final char AUTOMATED_EXECUTION_ORDER_PRIVATE = '1';
+ public static final char AUTOMATED_EXECUTION_ORDER_PUBLIC = '2';
+ public static final char MANUAL_ORDER = '3';
+
+ public HandlInst() {
+ super(21);
+ }
+
+ public HandlInst(char data) {
+ super(21, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Headline.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Headline.java
new file mode 100644
index 000000000..b29dcbf89
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Headline.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Headline extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 148;
+
+ public Headline() {
+ super(148);
+ }
+
+ public Headline(String data) {
+ super(148, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HeartBtInt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HeartBtInt.java
new file mode 100644
index 000000000..08d52882a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HeartBtInt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class HeartBtInt extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 108;
+
+ public HeartBtInt() {
+ super(108);
+ }
+
+ public HeartBtInt(int data) {
+ super(108, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HighPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HighPx.java
new file mode 100644
index 000000000..d137d8626
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HighPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class HighPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 332;
+
+ public HighPx() {
+ super(332);
+ }
+
+ public HighPx(java.math.BigDecimal data) {
+ super(332, data);
+ }
+
+ public HighPx(double data) {
+ super(332, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopCompID.java
new file mode 100644
index 000000000..b80e4dec1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class HopCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 628;
+
+ public HopCompID() {
+ super(628);
+ }
+
+ public HopCompID(String data) {
+ super(628, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopRefID.java
new file mode 100644
index 000000000..92537257b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class HopRefID extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 630;
+
+ public HopRefID() {
+ super(630);
+ }
+
+ public HopRefID(int data) {
+ super(630, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopSendingTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopSendingTime.java
new file mode 100644
index 000000000..7a62f7b64
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/HopSendingTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class HopSendingTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 629;
+
+ public HopSendingTime() {
+ super(629);
+ }
+
+ public HopSendingTime(LocalDateTime data) {
+ super(629, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIID.java
new file mode 100644
index 000000000..790d9ab58
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IOIID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 23;
+
+ public IOIID() {
+ super(23);
+ }
+
+ public IOIID(String data) {
+ super(23, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOINaturalFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOINaturalFlag.java
new file mode 100644
index 000000000..be7b43382
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOINaturalFlag.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class IOINaturalFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 130;
+
+ public IOINaturalFlag() {
+ super(130);
+ }
+
+ public IOINaturalFlag(boolean data) {
+ super(130, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQltyInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQltyInd.java
new file mode 100644
index 000000000..3ce514cfe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQltyInd.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOIQltyInd extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 25;
+ public static final char LOW = 'L';
+ public static final char MEDIUM = 'M';
+ public static final char HIGH = 'H';
+
+ public IOIQltyInd() {
+ super(25);
+ }
+
+ public IOIQltyInd(char data) {
+ super(25, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQty.java
new file mode 100644
index 000000000..54e3909a2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQty.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IOIQty extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 27;
+
+ public IOIQty() {
+ super(27);
+ }
+
+ public IOIQty(String data) {
+ super(27, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQualifier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQualifier.java
new file mode 100644
index 000000000..acd0c3535
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIQualifier.java
@@ -0,0 +1,56 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOIQualifier extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 104;
+ public static final char ALL_OR_NONE = 'A';
+ public static final char MARKET_ON_CLOSE = 'B';
+ public static final char AT_THE_CLOSE = 'C';
+ public static final char VWAP = 'D';
+ public static final char IN_TOUCH_WITH = 'I';
+ public static final char LIMIT = 'L';
+ public static final char MORE_BEHIND = 'M';
+ public static final char AT_THE_OPEN = 'O';
+ public static final char TAKING_A_POSITION = 'P';
+ public static final char AT_THE_MARKET = 'Q';
+ public static final char READY_TO_TRADE = 'R';
+ public static final char PORTFOLIO_SHOWN = 'S';
+ public static final char THROUGH_THE_DAY = 'T';
+ public static final char VERSUS = 'V';
+ public static final char INDICATION_WORKING_AWAY = 'W';
+ public static final char CROSSING_OPPORTUNITY = 'X';
+ public static final char AT_THE_MIDPOINT = 'Y';
+ public static final char PRE_OPEN = 'Z';
+
+ public IOIQualifier() {
+ super(104);
+ }
+
+ public IOIQualifier(char data) {
+ super(104, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIRefID.java
new file mode 100644
index 000000000..a09016515
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOIRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IOIRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 26;
+
+ public IOIRefID() {
+ super(26);
+ }
+
+ public IOIRefID(String data) {
+ super(26, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOITransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOITransType.java
new file mode 100644
index 000000000..107d2c079
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IOITransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class IOITransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 28;
+ public static final char NEW = 'N';
+ public static final char CANCEL = 'C';
+ public static final char REPLACE = 'R';
+
+ public IOITransType() {
+ super(28);
+ }
+
+ public IOITransType(char data) {
+ super(28, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InViewOfCommon.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InViewOfCommon.java
new file mode 100644
index 000000000..dba0e4a10
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InViewOfCommon.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class InViewOfCommon extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 328;
+
+ public InViewOfCommon() {
+ super(328);
+ }
+
+ public InViewOfCommon(boolean data) {
+ super(328, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IncTaxInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IncTaxInd.java
new file mode 100644
index 000000000..f05d320be
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IncTaxInd.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class IncTaxInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 416;
+ public static final int NET = 1;
+ public static final int GROSS = 2;
+
+ public IncTaxInd() {
+ super(416);
+ }
+
+ public IncTaxInd(int data) {
+ super(416, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IndividualAllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IndividualAllocID.java
new file mode 100644
index 000000000..992736f03
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IndividualAllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IndividualAllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 467;
+
+ public IndividualAllocID() {
+ super(467);
+ }
+
+ public IndividualAllocID(String data) {
+ super(467, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IndividualAllocRejCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IndividualAllocRejCode.java
new file mode 100644
index 000000000..60017ab7d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IndividualAllocRejCode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class IndividualAllocRejCode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 776;
+
+ public IndividualAllocRejCode() {
+ super(776);
+ }
+
+ public IndividualAllocRejCode(int data) {
+ super(776, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrAttribType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrAttribType.java
new file mode 100644
index 000000000..00502c0c9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrAttribType.java
@@ -0,0 +1,61 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class InstrAttribType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 871;
+ public static final int FLAT = 1;
+ public static final int ZERO_COUPON = 2;
+ public static final int INTEREST_BEARING = 3;
+ public static final int NO_PERIODIC_PAYMENTS = 4;
+ public static final int VARIABLE_RATE = 5;
+ public static final int LESS_FEE_FOR_PUT = 6;
+ public static final int STEPPED_COUPON = 7;
+ public static final int COUPON_PERIOD = 8;
+ public static final int WHEN_AND_IF_ISSUED = 9;
+ public static final int ORIGINAL_ISSUE_DISCOUNT = 10;
+ public static final int CALLABLE_PUTTABLE = 11;
+ public static final int ESCROWED_TO_MATURITY = 12;
+ public static final int ESCROWED_TO_REDEMPTION_DATE = 13;
+ public static final int PRE_REFUNDED = 14;
+ public static final int IN_DEFAULT = 15;
+ public static final int UNRATED = 16;
+ public static final int TAXABLE = 17;
+ public static final int INDEXED = 18;
+ public static final int SUBJECT_TO_ALTERNATIVE_MINIMUM_TAX = 19;
+ public static final int ORIGINAL_ISSUE_DISCOUNT_PRICE = 20;
+ public static final int CALLABLE_BELOW_MATURITY_VALUE = 21;
+ public static final int CALLABLE_WITHOUT_NOTICE_BY_MAIL_TO_HOLDER_UNLESS_REGISTERED = 22;
+ public static final int TEXT = 99;
+
+ public InstrAttribType() {
+ super(871);
+ }
+
+ public InstrAttribType(int data) {
+ super(871, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrAttribValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrAttribValue.java
new file mode 100644
index 000000000..68fdb9b3c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrAttribValue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class InstrAttribValue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 872;
+
+ public InstrAttribValue() {
+ super(872);
+ }
+
+ public InstrAttribValue(String data) {
+ super(872, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrRegistry.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrRegistry.java
new file mode 100644
index 000000000..446b87818
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InstrRegistry.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class InstrRegistry extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 543;
+
+ public InstrRegistry() {
+ super(543);
+ }
+
+ public InstrRegistry(String data) {
+ super(543, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InterestAccrualDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InterestAccrualDate.java
new file mode 100644
index 000000000..d7934c5a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InterestAccrualDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class InterestAccrualDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 874;
+
+ public InterestAccrualDate() {
+ super(874);
+ }
+
+ public InterestAccrualDate(String data) {
+ super(874, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InterestAtMaturity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InterestAtMaturity.java
new file mode 100644
index 000000000..bd4fb918b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InterestAtMaturity.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class InterestAtMaturity extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 738;
+
+ public InterestAtMaturity() {
+ super(738);
+ }
+
+ public InterestAtMaturity(java.math.BigDecimal data) {
+ super(738, data);
+ }
+
+ public InterestAtMaturity(double data) {
+ super(738, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InvestorCountryOfResidence.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InvestorCountryOfResidence.java
new file mode 100644
index 000000000..54bd3ef18
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/InvestorCountryOfResidence.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class InvestorCountryOfResidence extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 475;
+
+ public InvestorCountryOfResidence() {
+ super(475);
+ }
+
+ public InvestorCountryOfResidence(String data) {
+ super(475, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IssueDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IssueDate.java
new file mode 100644
index 000000000..947f20c76
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/IssueDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class IssueDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 225;
+
+ public IssueDate() {
+ super(225);
+ }
+
+ public IssueDate(String data) {
+ super(225, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Issuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Issuer.java
new file mode 100644
index 000000000..d3a6fa25b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Issuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Issuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 106;
+
+ public Issuer() {
+ super(106);
+ }
+
+ public Issuer(String data) {
+ super(106, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastCapacity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastCapacity.java
new file mode 100644
index 000000000..e3175d5ce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastCapacity.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class LastCapacity extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 29;
+ public static final char AGENT = '1';
+ public static final char CROSS_AS_AGENT = '2';
+ public static final char CROSS_AS_PRINCIPAL = '3';
+ public static final char PRINCIPAL = '4';
+
+ public LastCapacity() {
+ super(29);
+ }
+
+ public LastCapacity(char data) {
+ super(29, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastForwardPoints.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastForwardPoints.java
new file mode 100644
index 000000000..95c1a6cf2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastForwardPoints.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastForwardPoints extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 195;
+
+ public LastForwardPoints() {
+ super(195);
+ }
+
+ public LastForwardPoints(java.math.BigDecimal data) {
+ super(195, data);
+ }
+
+ public LastForwardPoints(double data) {
+ super(195, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastForwardPoints2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastForwardPoints2.java
new file mode 100644
index 000000000..345506dcf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastForwardPoints2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastForwardPoints2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 641;
+
+ public LastForwardPoints2() {
+ super(641);
+ }
+
+ public LastForwardPoints2(java.math.BigDecimal data) {
+ super(641, data);
+ }
+
+ public LastForwardPoints2(double data) {
+ super(641, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastFragment.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastFragment.java
new file mode 100644
index 000000000..cda8040b3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastFragment.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class LastFragment extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 893;
+
+ public LastFragment() {
+ super(893);
+ }
+
+ public LastFragment(boolean data) {
+ super(893, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastLiquidityInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastLiquidityInd.java
new file mode 100644
index 000000000..91cc3d38a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastLiquidityInd.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LastLiquidityInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 851;
+ public static final int ADDED_LIQUIDITY = 1;
+ public static final int REMOVED_LIQUIDITY = 2;
+ public static final int LIQUIDITY_ROUTED_OUT = 3;
+
+ public LastLiquidityInd() {
+ super(851);
+ }
+
+ public LastLiquidityInd(int data) {
+ super(851, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastMkt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastMkt.java
new file mode 100644
index 000000000..bcc0f1d89
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastMkt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LastMkt extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 30;
+
+ public LastMkt() {
+ super(30);
+ }
+
+ public LastMkt(String data) {
+ super(30, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastMsgSeqNumProcessed.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastMsgSeqNumProcessed.java
new file mode 100644
index 000000000..749b003c7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastMsgSeqNumProcessed.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LastMsgSeqNumProcessed extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 369;
+
+ public LastMsgSeqNumProcessed() {
+ super(369);
+ }
+
+ public LastMsgSeqNumProcessed(int data) {
+ super(369, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastNetworkResponseID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastNetworkResponseID.java
new file mode 100644
index 000000000..ff2fa998e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastNetworkResponseID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LastNetworkResponseID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 934;
+
+ public LastNetworkResponseID() {
+ super(934);
+ }
+
+ public LastNetworkResponseID(String data) {
+ super(934, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastParPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastParPx.java
new file mode 100644
index 000000000..0e6f149cc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastParPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastParPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 669;
+
+ public LastParPx() {
+ super(669);
+ }
+
+ public LastParPx(java.math.BigDecimal data) {
+ super(669, data);
+ }
+
+ public LastParPx(double data) {
+ super(669, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastPx.java
new file mode 100644
index 000000000..dc0cfc918
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 31;
+
+ public LastPx() {
+ super(31);
+ }
+
+ public LastPx(java.math.BigDecimal data) {
+ super(31, data);
+ }
+
+ public LastPx(double data) {
+ super(31, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastQty.java
new file mode 100644
index 000000000..c51e8f47e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 32;
+
+ public LastQty() {
+ super(32);
+ }
+
+ public LastQty(java.math.BigDecimal data) {
+ super(32, data);
+ }
+
+ public LastQty(double data) {
+ super(32, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastRptRequested.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastRptRequested.java
new file mode 100644
index 000000000..8a1810804
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastRptRequested.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class LastRptRequested extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 912;
+
+ public LastRptRequested() {
+ super(912);
+ }
+
+ public LastRptRequested(boolean data) {
+ super(912, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastSpotRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastSpotRate.java
new file mode 100644
index 000000000..6d26de4e9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastSpotRate.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LastSpotRate extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 194;
+
+ public LastSpotRate() {
+ super(194);
+ }
+
+ public LastSpotRate(java.math.BigDecimal data) {
+ super(194, data);
+ }
+
+ public LastSpotRate(double data) {
+ super(194, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastUpdateTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastUpdateTime.java
new file mode 100644
index 000000000..cbf7a278c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LastUpdateTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class LastUpdateTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 779;
+
+ public LastUpdateTime() {
+ super(779);
+ }
+
+ public LastUpdateTime(LocalDateTime data) {
+ super(779, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LeavesQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LeavesQty.java
new file mode 100644
index 000000000..89fbae06a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LeavesQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LeavesQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 151;
+
+ public LeavesQty() {
+ super(151);
+ }
+
+ public LeavesQty(java.math.BigDecimal data) {
+ super(151, data);
+ }
+
+ public LeavesQty(double data) {
+ super(151, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocAccount.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocAccount.java
new file mode 100644
index 000000000..612bb5809
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocAccount.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegAllocAccount extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 671;
+
+ public LegAllocAccount() {
+ super(671);
+ }
+
+ public LegAllocAccount(String data) {
+ super(671, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocAcctIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocAcctIDSource.java
new file mode 100644
index 000000000..56a08dd71
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocAcctIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegAllocAcctIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 674;
+
+ public LegAllocAcctIDSource() {
+ super(674);
+ }
+
+ public LegAllocAcctIDSource(String data) {
+ super(674, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocQty.java
new file mode 100644
index 000000000..7a19700fd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegAllocQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegAllocQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 673;
+
+ public LegAllocQty() {
+ super(673);
+ }
+
+ public LegAllocQty(java.math.BigDecimal data) {
+ super(673, data);
+ }
+
+ public LegAllocQty(double data) {
+ super(673, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurveCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurveCurrency.java
new file mode 100644
index 000000000..4662d78f4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurveCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegBenchmarkCurveCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 676;
+
+ public LegBenchmarkCurveCurrency() {
+ super(676);
+ }
+
+ public LegBenchmarkCurveCurrency(String data) {
+ super(676, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurveName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurveName.java
new file mode 100644
index 000000000..5db95213c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurveName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegBenchmarkCurveName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 677;
+
+ public LegBenchmarkCurveName() {
+ super(677);
+ }
+
+ public LegBenchmarkCurveName(String data) {
+ super(677, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurvePoint.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurvePoint.java
new file mode 100644
index 000000000..68928262b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkCurvePoint.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegBenchmarkCurvePoint extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 678;
+
+ public LegBenchmarkCurvePoint() {
+ super(678);
+ }
+
+ public LegBenchmarkCurvePoint(String data) {
+ super(678, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkPrice.java
new file mode 100644
index 000000000..7713eba5a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegBenchmarkPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 679;
+
+ public LegBenchmarkPrice() {
+ super(679);
+ }
+
+ public LegBenchmarkPrice(java.math.BigDecimal data) {
+ super(679, data);
+ }
+
+ public LegBenchmarkPrice(double data) {
+ super(679, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkPriceType.java
new file mode 100644
index 000000000..afaac00ea
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBenchmarkPriceType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LegBenchmarkPriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 680;
+
+ public LegBenchmarkPriceType() {
+ super(680);
+ }
+
+ public LegBenchmarkPriceType(int data) {
+ super(680, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBidPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBidPx.java
new file mode 100644
index 000000000..0d0b8bd76
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegBidPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegBidPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 681;
+
+ public LegBidPx() {
+ super(681);
+ }
+
+ public LegBidPx(java.math.BigDecimal data) {
+ super(681, data);
+ }
+
+ public LegBidPx(double data) {
+ super(681, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCFICode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCFICode.java
new file mode 100644
index 000000000..39545af09
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCFICode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegCFICode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 608;
+
+ public LegCFICode() {
+ super(608);
+ }
+
+ public LegCFICode(String data) {
+ super(608, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegContractMultiplier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegContractMultiplier.java
new file mode 100644
index 000000000..c6ac21c01
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegContractMultiplier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LegContractMultiplier extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 614;
+
+ public LegContractMultiplier() {
+ super(614);
+ }
+
+ public LegContractMultiplier(double data) {
+ super(614, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegContractSettlMonth.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegContractSettlMonth.java
new file mode 100644
index 000000000..7214737ee
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegContractSettlMonth.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegContractSettlMonth extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 955;
+
+ public LegContractSettlMonth() {
+ super(955);
+ }
+
+ public LegContractSettlMonth(String data) {
+ super(955, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCountryOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCountryOfIssue.java
new file mode 100644
index 000000000..59ba8663b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCountryOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegCountryOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 596;
+
+ public LegCountryOfIssue() {
+ super(596);
+ }
+
+ public LegCountryOfIssue(String data) {
+ super(596, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCouponPaymentDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCouponPaymentDate.java
new file mode 100644
index 000000000..d2d2ab058
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCouponPaymentDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegCouponPaymentDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 248;
+
+ public LegCouponPaymentDate() {
+ super(248);
+ }
+
+ public LegCouponPaymentDate(String data) {
+ super(248, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCouponRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCouponRate.java
new file mode 100644
index 000000000..8e2887b53
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCouponRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LegCouponRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 615;
+
+ public LegCouponRate() {
+ super(615);
+ }
+
+ public LegCouponRate(double data) {
+ super(615, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCoveredOrUncovered.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCoveredOrUncovered.java
new file mode 100644
index 000000000..fd0c80459
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCoveredOrUncovered.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LegCoveredOrUncovered extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 565;
+
+ public LegCoveredOrUncovered() {
+ super(565);
+ }
+
+ public LegCoveredOrUncovered(int data) {
+ super(565, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCreditRating.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCreditRating.java
new file mode 100644
index 000000000..0abd09074
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCreditRating.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegCreditRating extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 257;
+
+ public LegCreditRating() {
+ super(257);
+ }
+
+ public LegCreditRating(String data) {
+ super(257, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCurrency.java
new file mode 100644
index 000000000..12266d5f9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 556;
+
+ public LegCurrency() {
+ super(556);
+ }
+
+ public LegCurrency(String data) {
+ super(556, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegDatedDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegDatedDate.java
new file mode 100644
index 000000000..f9ddd082c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegDatedDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegDatedDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 739;
+
+ public LegDatedDate() {
+ super(739);
+ }
+
+ public LegDatedDate(String data) {
+ super(739, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegFactor.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegFactor.java
new file mode 100644
index 000000000..63289099f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegFactor.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LegFactor extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 253;
+
+ public LegFactor() {
+ super(253);
+ }
+
+ public LegFactor(double data) {
+ super(253, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIOIQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIOIQty.java
new file mode 100644
index 000000000..25af73e3d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIOIQty.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegIOIQty extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 682;
+
+ public LegIOIQty() {
+ super(682);
+ }
+
+ public LegIOIQty(String data) {
+ super(682, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIndividualAllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIndividualAllocID.java
new file mode 100644
index 000000000..2b02d6e0c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIndividualAllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegIndividualAllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 672;
+
+ public LegIndividualAllocID() {
+ super(672);
+ }
+
+ public LegIndividualAllocID(String data) {
+ super(672, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegInstrRegistry.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegInstrRegistry.java
new file mode 100644
index 000000000..cceea2498
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegInstrRegistry.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegInstrRegistry extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 599;
+
+ public LegInstrRegistry() {
+ super(599);
+ }
+
+ public LegInstrRegistry(String data) {
+ super(599, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegInterestAccrualDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegInterestAccrualDate.java
new file mode 100644
index 000000000..4cd5136a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegInterestAccrualDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegInterestAccrualDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 956;
+
+ public LegInterestAccrualDate() {
+ super(956);
+ }
+
+ public LegInterestAccrualDate(String data) {
+ super(956, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIssueDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIssueDate.java
new file mode 100644
index 000000000..abfd092c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIssueDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegIssueDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 249;
+
+ public LegIssueDate() {
+ super(249);
+ }
+
+ public LegIssueDate(String data) {
+ super(249, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIssuer.java
new file mode 100644
index 000000000..2e29bac77
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 617;
+
+ public LegIssuer() {
+ super(617);
+ }
+
+ public LegIssuer(String data) {
+ super(617, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegLastPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegLastPx.java
new file mode 100644
index 000000000..8cda7cdda
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegLastPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegLastPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 637;
+
+ public LegLastPx() {
+ super(637);
+ }
+
+ public LegLastPx(java.math.BigDecimal data) {
+ super(637, data);
+ }
+
+ public LegLastPx(double data) {
+ super(637, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegLocaleOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegLocaleOfIssue.java
new file mode 100644
index 000000000..493cec02b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegLocaleOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegLocaleOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 598;
+
+ public LegLocaleOfIssue() {
+ super(598);
+ }
+
+ public LegLocaleOfIssue(String data) {
+ super(598, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegMaturityDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegMaturityDate.java
new file mode 100644
index 000000000..47c53a024
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegMaturityDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegMaturityDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 611;
+
+ public LegMaturityDate() {
+ super(611);
+ }
+
+ public LegMaturityDate(String data) {
+ super(611, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegMaturityMonthYear.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegMaturityMonthYear.java
new file mode 100644
index 000000000..640e5ffeb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegMaturityMonthYear.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegMaturityMonthYear extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 610;
+
+ public LegMaturityMonthYear() {
+ super(610);
+ }
+
+ public LegMaturityMonthYear(String data) {
+ super(610, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOfferPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOfferPx.java
new file mode 100644
index 000000000..b6b46da3e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOfferPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegOfferPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 684;
+
+ public LegOfferPx() {
+ super(684);
+ }
+
+ public LegOfferPx(java.math.BigDecimal data) {
+ super(684, data);
+ }
+
+ public LegOfferPx(double data) {
+ super(684, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOptAttribute.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOptAttribute.java
new file mode 100644
index 000000000..ac9e2a9c8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOptAttribute.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class LegOptAttribute extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 613;
+
+ public LegOptAttribute() {
+ super(613);
+ }
+
+ public LegOptAttribute(char data) {
+ super(613, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOrderQty.java
new file mode 100644
index 000000000..813585fd2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegOrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegOrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 685;
+
+ public LegOrderQty() {
+ super(685);
+ }
+
+ public LegOrderQty(java.math.BigDecimal data) {
+ super(685, data);
+ }
+
+ public LegOrderQty(double data) {
+ super(685, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPool.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPool.java
new file mode 100644
index 000000000..89b8b0ebb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPool.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegPool extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 740;
+
+ public LegPool() {
+ super(740);
+ }
+
+ public LegPool(String data) {
+ super(740, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPositionEffect.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPositionEffect.java
new file mode 100644
index 000000000..1d378d93a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPositionEffect.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class LegPositionEffect extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 564;
+
+ public LegPositionEffect() {
+ super(564);
+ }
+
+ public LegPositionEffect(char data) {
+ super(564, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPrice.java
new file mode 100644
index 000000000..e2a59e380
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 566;
+
+ public LegPrice() {
+ super(566);
+ }
+
+ public LegPrice(java.math.BigDecimal data) {
+ super(566, data);
+ }
+
+ public LegPrice(double data) {
+ super(566, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPriceType.java
new file mode 100644
index 000000000..ee4cce838
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegPriceType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LegPriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 686;
+
+ public LegPriceType() {
+ super(686);
+ }
+
+ public LegPriceType(int data) {
+ super(686, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegProduct.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegProduct.java
new file mode 100644
index 000000000..19a86c8ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegProduct.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LegProduct extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 607;
+
+ public LegProduct() {
+ super(607);
+ }
+
+ public LegProduct(int data) {
+ super(607, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegQty.java
new file mode 100644
index 000000000..853b04600
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 687;
+
+ public LegQty() {
+ super(687);
+ }
+
+ public LegQty(java.math.BigDecimal data) {
+ super(687, data);
+ }
+
+ public LegQty(double data) {
+ super(687, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRatioQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRatioQty.java
new file mode 100644
index 000000000..eed93f8e9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRatioQty.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LegRatioQty extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 623;
+
+ public LegRatioQty() {
+ super(623);
+ }
+
+ public LegRatioQty(double data) {
+ super(623, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRedemptionDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRedemptionDate.java
new file mode 100644
index 000000000..6e78b5e67
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRedemptionDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegRedemptionDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 254;
+
+ public LegRedemptionDate() {
+ super(254);
+ }
+
+ public LegRedemptionDate(String data) {
+ super(254, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRefID.java
new file mode 100644
index 000000000..fcb68a78b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 654;
+
+ public LegRefID() {
+ super(654);
+ }
+
+ public LegRefID(String data) {
+ super(654, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepoCollateralSecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepoCollateralSecurityType.java
new file mode 100644
index 000000000..0ceacdb72
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepoCollateralSecurityType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegRepoCollateralSecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 250;
+
+ public LegRepoCollateralSecurityType() {
+ super(250);
+ }
+
+ public LegRepoCollateralSecurityType(String data) {
+ super(250, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepurchaseRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepurchaseRate.java
new file mode 100644
index 000000000..6646abc2e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepurchaseRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LegRepurchaseRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 252;
+
+ public LegRepurchaseRate() {
+ super(252);
+ }
+
+ public LegRepurchaseRate(double data) {
+ super(252, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepurchaseTerm.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepurchaseTerm.java
new file mode 100644
index 000000000..9ec5912c6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegRepurchaseTerm.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LegRepurchaseTerm extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 251;
+
+ public LegRepurchaseTerm() {
+ super(251);
+ }
+
+ public LegRepurchaseTerm(int data) {
+ super(251, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityAltID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityAltID.java
new file mode 100644
index 000000000..52edb868d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityAltID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityAltID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 605;
+
+ public LegSecurityAltID() {
+ super(605);
+ }
+
+ public LegSecurityAltID(String data) {
+ super(605, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityAltIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityAltIDSource.java
new file mode 100644
index 000000000..419cf6c44
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityAltIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityAltIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 606;
+
+ public LegSecurityAltIDSource() {
+ super(606);
+ }
+
+ public LegSecurityAltIDSource(String data) {
+ super(606, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityDesc.java
new file mode 100644
index 000000000..1ad2dfdf1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 620;
+
+ public LegSecurityDesc() {
+ super(620);
+ }
+
+ public LegSecurityDesc(String data) {
+ super(620, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityExchange.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityExchange.java
new file mode 100644
index 000000000..dd17c3334
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityExchange.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityExchange extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 616;
+
+ public LegSecurityExchange() {
+ super(616);
+ }
+
+ public LegSecurityExchange(String data) {
+ super(616, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityID.java
new file mode 100644
index 000000000..164ed4e2e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 602;
+
+ public LegSecurityID() {
+ super(602);
+ }
+
+ public LegSecurityID(String data) {
+ super(602, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityIDSource.java
new file mode 100644
index 000000000..da2edb523
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 603;
+
+ public LegSecurityIDSource() {
+ super(603);
+ }
+
+ public LegSecurityIDSource(String data) {
+ super(603, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecuritySubType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecuritySubType.java
new file mode 100644
index 000000000..42665a03e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecuritySubType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecuritySubType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 764;
+
+ public LegSecuritySubType() {
+ super(764);
+ }
+
+ public LegSecuritySubType(String data) {
+ super(764, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityType.java
new file mode 100644
index 000000000..b08f6c7fe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSecurityType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 609;
+
+ public LegSecurityType() {
+ super(609);
+ }
+
+ public LegSecurityType(String data) {
+ super(609, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlCurrency.java
new file mode 100644
index 000000000..ad0b911e7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSettlCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 675;
+
+ public LegSettlCurrency() {
+ super(675);
+ }
+
+ public LegSettlCurrency(String data) {
+ super(675, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlDate.java
new file mode 100644
index 000000000..ba67c8051
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSettlDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 588;
+
+ public LegSettlDate() {
+ super(588);
+ }
+
+ public LegSettlDate(String data) {
+ super(588, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlType.java
new file mode 100644
index 000000000..aa76c5f54
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSettlType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class LegSettlType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 587;
+
+ public LegSettlType() {
+ super(587);
+ }
+
+ public LegSettlType(char data) {
+ super(587, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSide.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSide.java
new file mode 100644
index 000000000..b198e00a2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSide.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class LegSide extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 624;
+
+ public LegSide() {
+ super(624);
+ }
+
+ public LegSide(char data) {
+ super(624, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStateOrProvinceOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStateOrProvinceOfIssue.java
new file mode 100644
index 000000000..10e4a4afa
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStateOrProvinceOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegStateOrProvinceOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 597;
+
+ public LegStateOrProvinceOfIssue() {
+ super(597);
+ }
+
+ public LegStateOrProvinceOfIssue(String data) {
+ super(597, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStipulationType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStipulationType.java
new file mode 100644
index 000000000..e5081699d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStipulationType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegStipulationType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 688;
+
+ public LegStipulationType() {
+ super(688);
+ }
+
+ public LegStipulationType(String data) {
+ super(688, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStipulationValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStipulationValue.java
new file mode 100644
index 000000000..86774a646
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStipulationValue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegStipulationValue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 689;
+
+ public LegStipulationValue() {
+ super(689);
+ }
+
+ public LegStipulationValue(String data) {
+ super(689, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStrikeCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStrikeCurrency.java
new file mode 100644
index 000000000..860cbb635
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStrikeCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegStrikeCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 942;
+
+ public LegStrikeCurrency() {
+ super(942);
+ }
+
+ public LegStrikeCurrency(String data) {
+ super(942, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStrikePrice.java
new file mode 100644
index 000000000..2c44e9043
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegStrikePrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LegStrikePrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 612;
+
+ public LegStrikePrice() {
+ super(612);
+ }
+
+ public LegStrikePrice(java.math.BigDecimal data) {
+ super(612, data);
+ }
+
+ public LegStrikePrice(double data) {
+ super(612, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSwapType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSwapType.java
new file mode 100644
index 000000000..e63d2b055
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSwapType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LegSwapType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 690;
+ public static final int PAR_FOR_PAR = 1;
+ public static final int MODIFIED_DURATION = 2;
+ public static final int RISK = 4;
+ public static final int PROCEEDS = 5;
+
+ public LegSwapType() {
+ super(690);
+ }
+
+ public LegSwapType(int data) {
+ super(690, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSymbol.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSymbol.java
new file mode 100644
index 000000000..51704b6f8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSymbol.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSymbol extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 600;
+
+ public LegSymbol() {
+ super(600);
+ }
+
+ public LegSymbol(String data) {
+ super(600, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSymbolSfx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSymbolSfx.java
new file mode 100644
index 000000000..7a1cfd083
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegSymbolSfx.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LegSymbolSfx extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 601;
+
+ public LegSymbolSfx() {
+ super(601);
+ }
+
+ public LegSymbolSfx(String data) {
+ super(601, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegalConfirm.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegalConfirm.java
new file mode 100644
index 000000000..28c2a7e71
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LegalConfirm.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class LegalConfirm extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 650;
+
+ public LegalConfirm() {
+ super(650);
+ }
+
+ public LegalConfirm(boolean data) {
+ super(650, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LinesOfText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LinesOfText.java
new file mode 100644
index 000000000..4e4800af0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LinesOfText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LinesOfText extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 33;
+
+ public LinesOfText() {
+ super(33);
+ }
+
+ public LinesOfText(int data) {
+ super(33, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityIndType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityIndType.java
new file mode 100644
index 000000000..855eca63b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityIndType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LiquidityIndType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 409;
+ public static final int FIVEDAY_MOVING_AVERAGE = 1;
+ public static final int TWENTYDAY_MOVING_AVERAGE = 2;
+ public static final int NORMAL_MARKET_SIZE = 3;
+ public static final int OTHER = 4;
+
+ public LiquidityIndType() {
+ super(409);
+ }
+
+ public LiquidityIndType(int data) {
+ super(409, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityNumSecurities.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityNumSecurities.java
new file mode 100644
index 000000000..29d1ca032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityNumSecurities.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class LiquidityNumSecurities extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 441;
+
+ public LiquidityNumSecurities() {
+ super(441);
+ }
+
+ public LiquidityNumSecurities(int data) {
+ super(441, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityPctHigh.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityPctHigh.java
new file mode 100644
index 000000000..c56eed181
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityPctHigh.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LiquidityPctHigh extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 403;
+
+ public LiquidityPctHigh() {
+ super(403);
+ }
+
+ public LiquidityPctHigh(double data) {
+ super(403, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityPctLow.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityPctLow.java
new file mode 100644
index 000000000..30f5cdf77
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityPctLow.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class LiquidityPctLow extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 402;
+
+ public LiquidityPctLow() {
+ super(402);
+ }
+
+ public LiquidityPctLow(double data) {
+ super(402, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityValue.java
new file mode 100644
index 000000000..e07c68abb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LiquidityValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LiquidityValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 404;
+
+ public LiquidityValue() {
+ super(404);
+ }
+
+ public LiquidityValue(java.math.BigDecimal data) {
+ super(404, data);
+ }
+
+ public LiquidityValue(double data) {
+ super(404, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListExecInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListExecInst.java
new file mode 100644
index 000000000..147b71ac2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListExecInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListExecInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 69;
+
+ public ListExecInst() {
+ super(69);
+ }
+
+ public ListExecInst(String data) {
+ super(69, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListExecInstType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListExecInstType.java
new file mode 100644
index 000000000..a705f31ee
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListExecInstType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ListExecInstType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 433;
+ public static final char IMMEDIATE = '1';
+ public static final char WAIT_FOR_EXECUTE_INSTRUCTION = '2';
+ public static final char EXCHANGE_SWITCH_CIV_ORDER_SELL_DRIVEN = '3';
+ public static final char EXCHANGE_SWITCH_CIV_ORDER_BUY_DRIVEN_CASH_TOP_UP = '4';
+ public static final char EXCHANGE_SWITCH_CIV_ORDER_BUY_DRIVEN_CASH_WITHDRAW = '5';
+
+ public ListExecInstType() {
+ super(433);
+ }
+
+ public ListExecInstType(char data) {
+ super(433, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListID.java
new file mode 100644
index 000000000..1bcabcd84
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 66;
+
+ public ListID() {
+ super(66);
+ }
+
+ public ListID(String data) {
+ super(66, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListName.java
new file mode 100644
index 000000000..b82a1d326
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 392;
+
+ public ListName() {
+ super(392);
+ }
+
+ public ListName(String data) {
+ super(392, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListOrderStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListOrderStatus.java
new file mode 100644
index 000000000..fc8609203
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListOrderStatus.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ListOrderStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 431;
+ public static final int INBIDDINGPROCESS = 1;
+ public static final int RECEIVEDFOREXECUTION = 2;
+ public static final int EXECUTING = 3;
+ public static final int CANCELING = 4;
+ public static final int ALERT = 5;
+ public static final int ALL_DONE = 6;
+ public static final int REJECT = 7;
+
+ public ListOrderStatus() {
+ super(431);
+ }
+
+ public ListOrderStatus(int data) {
+ super(431, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListSeqNo.java
new file mode 100644
index 000000000..86ff04bce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ListSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 67;
+
+ public ListSeqNo() {
+ super(67);
+ }
+
+ public ListSeqNo(int data) {
+ super(67, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListStatusText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListStatusText.java
new file mode 100644
index 000000000..bac45917d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListStatusText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ListStatusText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 444;
+
+ public ListStatusText() {
+ super(444);
+ }
+
+ public ListStatusText(String data) {
+ super(444, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListStatusType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListStatusType.java
new file mode 100644
index 000000000..73cf97be9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ListStatusType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ListStatusType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 429;
+ public static final int ACK = 1;
+ public static final int RESPONSE = 2;
+ public static final int TIMED = 3;
+ public static final int EXECSTARTED = 4;
+ public static final int ALLDONE = 5;
+ public static final int ALERT = 6;
+
+ public ListStatusType() {
+ super(429);
+ }
+
+ public ListStatusType(int data) {
+ super(429, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocaleOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocaleOfIssue.java
new file mode 100644
index 000000000..8b6f287f4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocaleOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LocaleOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 472;
+
+ public LocaleOfIssue() {
+ super(472);
+ }
+
+ public LocaleOfIssue(String data) {
+ super(472, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocateReqd.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocateReqd.java
new file mode 100644
index 000000000..06f97ac2b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocateReqd.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class LocateReqd extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 114;
+
+ public LocateReqd() {
+ super(114);
+ }
+
+ public LocateReqd(boolean data) {
+ super(114, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocationID.java
new file mode 100644
index 000000000..126c1298e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class LocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 283;
+
+ public LocationID() {
+ super(283);
+ }
+
+ public LocationID(String data) {
+ super(283, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LongQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LongQty.java
new file mode 100644
index 000000000..2031f9d54
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LongQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LongQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 704;
+
+ public LongQty() {
+ super(704);
+ }
+
+ public LongQty(java.math.BigDecimal data) {
+ super(704, data);
+ }
+
+ public LongQty(double data) {
+ super(704, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LowPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LowPx.java
new file mode 100644
index 000000000..2c36e3700
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/LowPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class LowPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 333;
+
+ public LowPx() {
+ super(333);
+ }
+
+ public LowPx(java.math.BigDecimal data) {
+ super(333, data);
+ }
+
+ public LowPx(double data) {
+ super(333, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryBuyer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryBuyer.java
new file mode 100644
index 000000000..6ed01666f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryBuyer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryBuyer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 288;
+
+ public MDEntryBuyer() {
+ super(288);
+ }
+
+ public MDEntryBuyer(String data) {
+ super(288, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryDate.java
new file mode 100644
index 000000000..10e4bc773
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryDate.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcDateOnlyField;
+
+import java.time.LocalDate;
+
+public class MDEntryDate extends UtcDateOnlyField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 272;
+
+ public MDEntryDate() {
+ super(272);
+ }
+
+ public MDEntryDate(LocalDate data) {
+ super(272, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryID.java
new file mode 100644
index 000000000..9649f8c72
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 278;
+
+ public MDEntryID() {
+ super(278);
+ }
+
+ public MDEntryID(String data) {
+ super(278, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryOriginator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryOriginator.java
new file mode 100644
index 000000000..262934358
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryOriginator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryOriginator extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 282;
+
+ public MDEntryOriginator() {
+ super(282);
+ }
+
+ public MDEntryOriginator(String data) {
+ super(282, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryPositionNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryPositionNo.java
new file mode 100644
index 000000000..9a4a71987
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryPositionNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MDEntryPositionNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 290;
+
+ public MDEntryPositionNo() {
+ super(290);
+ }
+
+ public MDEntryPositionNo(int data) {
+ super(290, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryPx.java
new file mode 100644
index 000000000..300bc672f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MDEntryPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 270;
+
+ public MDEntryPx() {
+ super(270);
+ }
+
+ public MDEntryPx(java.math.BigDecimal data) {
+ super(270, data);
+ }
+
+ public MDEntryPx(double data) {
+ super(270, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryRefID.java
new file mode 100644
index 000000000..945bb0791
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntryRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 280;
+
+ public MDEntryRefID() {
+ super(280);
+ }
+
+ public MDEntryRefID(String data) {
+ super(280, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntrySeller.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntrySeller.java
new file mode 100644
index 000000000..1f1c7a174
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntrySeller.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDEntrySeller extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 289;
+
+ public MDEntrySeller() {
+ super(289);
+ }
+
+ public MDEntrySeller(String data) {
+ super(289, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntrySize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntrySize.java
new file mode 100644
index 000000000..7b0effbd9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntrySize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MDEntrySize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 271;
+
+ public MDEntrySize() {
+ super(271);
+ }
+
+ public MDEntrySize(java.math.BigDecimal data) {
+ super(271, data);
+ }
+
+ public MDEntrySize(double data) {
+ super(271, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryTime.java
new file mode 100644
index 000000000..a011fd981
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeOnlyField;
+
+import java.time.LocalTime;
+
+public class MDEntryTime extends UtcTimeOnlyField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 273;
+
+ public MDEntryTime() {
+ super(273);
+ }
+
+ public MDEntryTime(LocalTime data) {
+ super(273, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryType.java
new file mode 100644
index 000000000..1a838d328
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDEntryType.java
@@ -0,0 +1,51 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MDEntryType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 269;
+ public static final char BID = '0';
+ public static final char OFFER = '1';
+ public static final char TRADE = '2';
+ public static final char INDEX_VALUE = '3';
+ public static final char OPENING_PRICE = '4';
+ public static final char CLOSING_PRICE = '5';
+ public static final char SETTLEMENT_PRICE = '6';
+ public static final char TRADING_SESSION_HIGH_PRICE = '7';
+ public static final char TRADING_SESSION_LOW_PRICE = '8';
+ public static final char TRADING_SESSION_VWAP_PRICE = '9';
+ public static final char IMBALANCE = 'A';
+ public static final char TRADE_VOLUME = 'B';
+ public static final char OPEN_INTEREST = 'C';
+
+ public MDEntryType() {
+ super(269);
+ }
+
+ public MDEntryType(char data) {
+ super(269, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDImplicitDelete.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDImplicitDelete.java
new file mode 100644
index 000000000..e400fed6c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDImplicitDelete.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class MDImplicitDelete extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 547;
+
+ public MDImplicitDelete() {
+ super(547);
+ }
+
+ public MDImplicitDelete(boolean data) {
+ super(547, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDMkt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDMkt.java
new file mode 100644
index 000000000..d5197eb7c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDMkt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDMkt extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 275;
+
+ public MDMkt() {
+ super(275);
+ }
+
+ public MDMkt(String data) {
+ super(275, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDReqID.java
new file mode 100644
index 000000000..906b0f11c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MDReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 262;
+
+ public MDReqID() {
+ super(262);
+ }
+
+ public MDReqID(String data) {
+ super(262, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDReqRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDReqRejReason.java
new file mode 100644
index 000000000..43448b818
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDReqRejReason.java
@@ -0,0 +1,51 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MDReqRejReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 281;
+ public static final char UNKNOWN_SYMBOL = '0';
+ public static final char DUPLICATE_MDREQID = '1';
+ public static final char INSUFFICIENT_BANDWIDTH = '2';
+ public static final char INSUFFICIENT_PERMISSIONS = '3';
+ public static final char UNSUPPORTED_SUBSCRIPTIONREQUESTTYPE = '4';
+ public static final char UNSUPPORTED_MARKETDEPTH = '5';
+ public static final char UNSUPPORTED_MDUPDATETYPE = '6';
+ public static final char UNSUPPORTED_AGGREGATEDBOOK = '7';
+ public static final char UNSUPPORTED_MDENTRYTYPE = '8';
+ public static final char UNSUPPORTED_TRADINGSESSIONID = '9';
+ public static final char UNSUPPORTED_SCOPE = 'A';
+ public static final char UNSUPPORTED_OPENCLOSESETTLEFLAG = 'B';
+ public static final char UNSUPPORTED_MDIMPLICITDELETE = 'C';
+
+ public MDReqRejReason() {
+ super(281);
+ }
+
+ public MDReqRejReason(char data) {
+ super(281, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDUpdateAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDUpdateAction.java
new file mode 100644
index 000000000..1a23a87d4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDUpdateAction.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MDUpdateAction extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 279;
+ public static final char NEW = '0';
+ public static final char CHANGE = '1';
+ public static final char DELETE = '2';
+
+ public MDUpdateAction() {
+ super(279);
+ }
+
+ public MDUpdateAction(char data) {
+ super(279, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDUpdateType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDUpdateType.java
new file mode 100644
index 000000000..acc25f767
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MDUpdateType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MDUpdateType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 265;
+ public static final int FULL_REFRESH = 0;
+ public static final int INCREMENTAL_REFRESH = 1;
+
+ public MDUpdateType() {
+ super(265);
+ }
+
+ public MDUpdateType(int data) {
+ super(265, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MailingDtls.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MailingDtls.java
new file mode 100644
index 000000000..fdfdd5c64
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MailingDtls.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MailingDtls extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 474;
+
+ public MailingDtls() {
+ super(474);
+ }
+
+ public MailingDtls(String data) {
+ super(474, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MailingInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MailingInst.java
new file mode 100644
index 000000000..312469710
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MailingInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MailingInst extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 482;
+
+ public MailingInst() {
+ super(482);
+ }
+
+ public MailingInst(String data) {
+ super(482, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarginExcess.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarginExcess.java
new file mode 100644
index 000000000..f5fca0e8d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarginExcess.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MarginExcess extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 899;
+
+ public MarginExcess() {
+ super(899);
+ }
+
+ public MarginExcess(java.math.BigDecimal data) {
+ super(899, data);
+ }
+
+ public MarginExcess(double data) {
+ super(899, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarginRatio.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarginRatio.java
new file mode 100644
index 000000000..f35f1e93c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarginRatio.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class MarginRatio extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 898;
+
+ public MarginRatio() {
+ super(898);
+ }
+
+ public MarginRatio(double data) {
+ super(898, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarketDepth.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarketDepth.java
new file mode 100644
index 000000000..8e72fadf4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MarketDepth.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MarketDepth extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 264;
+
+ public MarketDepth() {
+ super(264);
+ }
+
+ public MarketDepth(int data) {
+ super(264, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelRejectReason.java
new file mode 100644
index 000000000..e7805fcf2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelRejectReason.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MassCancelRejectReason extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 532;
+ public static final char MASS_CANCEL_NOT_SUPPORTED = '0';
+ public static final char INVALID_OR_UNKNOWN_SECURITY = '1';
+ public static final char INVALID_OR_UNKNOWN_UNDERLYING = '2';
+ public static final char INVALID_OR_UNKNOWN_PRODUCT = '3';
+ public static final char INVALID_OR_UNKNOWN_CFICODE = '4';
+ public static final char INVALID_OR_UNKNOWN_SECURITY_TYPE = '5';
+ public static final char INVALID_OR_UNKNOWN_TRADING_SESSION = '6';
+ public static final char OTHER = '99';
+
+ public MassCancelRejectReason() {
+ super(532);
+ }
+
+ public MassCancelRejectReason(char data) {
+ super(532, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelRequestType.java
new file mode 100644
index 000000000..3b0d9b337
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelRequestType.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MassCancelRequestType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 530;
+ public static final char CANCEL_ORDERS_FOR_A_SECURITY = '1';
+ public static final char CANCEL_ORDERS_FOR_AN_UNDERLYING_SECURITY = '2';
+ public static final char CANCEL_ORDERS_FOR_A_PRODUCT = '3';
+ public static final char CANCEL_ORDERS_FOR_A_CFICODE = '4';
+ public static final char CANCEL_ORDERS_FOR_A_SECURITYTYPE = '5';
+ public static final char CANCEL_ORDERS_FOR_A_TRADING_SESSION = '6';
+ public static final char CANCEL_ALL_ORDERS = '7';
+
+ public MassCancelRequestType() {
+ super(530);
+ }
+
+ public MassCancelRequestType(char data) {
+ super(530, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelResponse.java
new file mode 100644
index 000000000..866f627eb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassCancelResponse.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MassCancelResponse extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 531;
+ public static final char CANCEL_REQUEST_REJECTED = '0';
+ public static final char CANCEL_ORDERS_FOR_A_SECURITY = '1';
+ public static final char CANCEL_ORDERS_FOR_AN_UNDERLYING_SECURITY = '2';
+ public static final char CANCEL_ORDERS_FOR_A_PRODUCT = '3';
+ public static final char CANCEL_ORDERS_FOR_A_CFICODE = '4';
+ public static final char CANCEL_ORDERS_FOR_A_SECURITYTYPE = '5';
+ public static final char CANCEL_ORDERS_FOR_A_TRADING_SESSION = '6';
+ public static final char CANCEL_ALL_ORDERS = '7';
+
+ public MassCancelResponse() {
+ super(531);
+ }
+
+ public MassCancelResponse(char data) {
+ super(531, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassStatusReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassStatusReqID.java
new file mode 100644
index 000000000..87b42c6af
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassStatusReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MassStatusReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 584;
+
+ public MassStatusReqID() {
+ super(584);
+ }
+
+ public MassStatusReqID(String data) {
+ super(584, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassStatusReqType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassStatusReqType.java
new file mode 100644
index 000000000..5d0b6e1a9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MassStatusReqType.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MassStatusReqType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 585;
+ public static final int STATUS_FOR_ORDERS_FOR_A_SECURITY = 1;
+ public static final int STATUS_FOR_ORDERS_FOR_AN_UNDERLYING_SECURITY = 2;
+ public static final int STATUS_FOR_ORDERS_FOR_A_PRODUCT = 3;
+ public static final int STATUS_FOR_ORDERS_FOR_A_CFICODE = 4;
+ public static final int STATUS_FOR_ORDERS_FOR_A_SECURITYTYPE = 5;
+ public static final int STATUS_FOR_ORDERS_FOR_A_TRADING_SESSION = 6;
+ public static final int STATUS_FOR_ALL_ORDERS = 7;
+ public static final int STATUS_FOR_ORDERS_FOR_A_PARTYID = 8;
+
+ public MassStatusReqType() {
+ super(585);
+ }
+
+ public MassStatusReqType(int data) {
+ super(585, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MatchStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MatchStatus.java
new file mode 100644
index 000000000..32e3704b7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MatchStatus.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MatchStatus extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 573;
+ public static final char COMPARED_MATCHED_OR_AFFIRMED = '0';
+ public static final char UNCOMPARED_UNMATCHED_OR_UNAFFIRMED = '1';
+ public static final char ADVISORY_OR_ALERT = '2';
+
+ public MatchStatus() {
+ super(573);
+ }
+
+ public MatchStatus(char data) {
+ super(573, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MatchType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MatchType.java
new file mode 100644
index 000000000..b6dea2a18
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MatchType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MatchType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 574;
+
+ public MatchType() {
+ super(574);
+ }
+
+ public MatchType(String data) {
+ super(574, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityDate.java
new file mode 100644
index 000000000..504c9871f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MaturityDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 541;
+
+ public MaturityDate() {
+ super(541);
+ }
+
+ public MaturityDate(String data) {
+ super(541, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityMonthYear.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityMonthYear.java
new file mode 100644
index 000000000..9e9a44063
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityMonthYear.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MaturityMonthYear extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 200;
+
+ public MaturityMonthYear() {
+ super(200);
+ }
+
+ public MaturityMonthYear(String data) {
+ super(200, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityNetMoney.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityNetMoney.java
new file mode 100644
index 000000000..f7bc35fa6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaturityNetMoney.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MaturityNetMoney extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 890;
+
+ public MaturityNetMoney() {
+ super(890);
+ }
+
+ public MaturityNetMoney(java.math.BigDecimal data) {
+ super(890, data);
+ }
+
+ public MaturityNetMoney(double data) {
+ super(890, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxFloor.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxFloor.java
new file mode 100644
index 000000000..7dc13f71c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxFloor.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MaxFloor extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 111;
+
+ public MaxFloor() {
+ super(111);
+ }
+
+ public MaxFloor(java.math.BigDecimal data) {
+ super(111, data);
+ }
+
+ public MaxFloor(double data) {
+ super(111, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxMessageSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxMessageSize.java
new file mode 100644
index 000000000..bda4cc032
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxMessageSize.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MaxMessageSize extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 383;
+
+ public MaxMessageSize() {
+ super(383);
+ }
+
+ public MaxMessageSize(int data) {
+ super(383, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxShow.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxShow.java
new file mode 100644
index 000000000..2877fe223
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MaxShow.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MaxShow extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 210;
+
+ public MaxShow() {
+ super(210);
+ }
+
+ public MaxShow(java.math.BigDecimal data) {
+ super(210, data);
+ }
+
+ public MaxShow(double data) {
+ super(210, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MessageEncoding.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MessageEncoding.java
new file mode 100644
index 000000000..e1c1ae784
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MessageEncoding.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MessageEncoding extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 347;
+ public static final String ISO_2022_JP = "ISO-2022-JP";
+ public static final String EUC_JP = "EUC-JP";
+ public static final String SHIFT_JIS = "SHIFT_JIS";
+ public static final String UTF_8 = "UTF-8";
+
+ public MessageEncoding() {
+ super(347);
+ }
+
+ public MessageEncoding(String data) {
+ super(347, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MidPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MidPx.java
new file mode 100644
index 000000000..55026b273
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MidPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MidPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 631;
+
+ public MidPx() {
+ super(631);
+ }
+
+ public MidPx(java.math.BigDecimal data) {
+ super(631, data);
+ }
+
+ public MidPx(double data) {
+ super(631, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MidYield.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MidYield.java
new file mode 100644
index 000000000..8372474bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MidYield.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class MidYield extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 633;
+
+ public MidYield() {
+ super(633);
+ }
+
+ public MidYield(double data) {
+ super(633, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinBidSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinBidSize.java
new file mode 100644
index 000000000..988a9ede3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinBidSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MinBidSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 647;
+
+ public MinBidSize() {
+ super(647);
+ }
+
+ public MinBidSize(java.math.BigDecimal data) {
+ super(647, data);
+ }
+
+ public MinBidSize(double data) {
+ super(647, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinOfferSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinOfferSize.java
new file mode 100644
index 000000000..33f62bc3d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinOfferSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MinOfferSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 648;
+
+ public MinOfferSize() {
+ super(648);
+ }
+
+ public MinOfferSize(java.math.BigDecimal data) {
+ super(648, data);
+ }
+
+ public MinOfferSize(double data) {
+ super(648, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinQty.java
new file mode 100644
index 000000000..c7fb2ecee
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MinQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 110;
+
+ public MinQty() {
+ super(110);
+ }
+
+ public MinQty(java.math.BigDecimal data) {
+ super(110, data);
+ }
+
+ public MinQty(double data) {
+ super(110, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinTradeVol.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinTradeVol.java
new file mode 100644
index 000000000..525d176a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MinTradeVol.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MinTradeVol extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 562;
+
+ public MinTradeVol() {
+ super(562);
+ }
+
+ public MinTradeVol(java.math.BigDecimal data) {
+ super(562, data);
+ }
+
+ public MinTradeVol(double data) {
+ super(562, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeAmt.java
new file mode 100644
index 000000000..f1d3054c6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MiscFeeAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 137;
+
+ public MiscFeeAmt() {
+ super(137);
+ }
+
+ public MiscFeeAmt(java.math.BigDecimal data) {
+ super(137, data);
+ }
+
+ public MiscFeeAmt(double data) {
+ super(137, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeBasis.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeBasis.java
new file mode 100644
index 000000000..7de6d5b77
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeBasis.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MiscFeeBasis extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 891;
+ public static final int ABSOLUTE = 0;
+ public static final int PER_UNIT = 1;
+ public static final int PERCENTAGE = 2;
+
+ public MiscFeeBasis() {
+ super(891);
+ }
+
+ public MiscFeeBasis(int data) {
+ super(891, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeCurr.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeCurr.java
new file mode 100644
index 000000000..fe02d4de4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeCurr.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MiscFeeCurr extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 138;
+
+ public MiscFeeCurr() {
+ super(138);
+ }
+
+ public MiscFeeCurr(String data) {
+ super(138, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeType.java
new file mode 100644
index 000000000..870df5898
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MiscFeeType.java
@@ -0,0 +1,50 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MiscFeeType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 139;
+ public static final char REGULATORY = '1';
+ public static final char TAX = '2';
+ public static final char LOCAL_COMMISSION = '3';
+ public static final char EXCHANGE_FEES = '4';
+ public static final char STAMP = '5';
+ public static final char LEVY = '6';
+ public static final char OTHER = '7';
+ public static final char MARKUP = '8';
+ public static final char CONSUMPTION_TAX = '9';
+ public static final char PER_TRANSACTION = '10';
+ public static final char CONVERSION = '11';
+ public static final char AGENT = '12';
+
+ public MiscFeeType() {
+ super(139);
+ }
+
+ public MiscFeeType(char data) {
+ super(139, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MktBidPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MktBidPx.java
new file mode 100644
index 000000000..52c7d3173
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MktBidPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MktBidPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 645;
+
+ public MktBidPx() {
+ super(645);
+ }
+
+ public MktBidPx(java.math.BigDecimal data) {
+ super(645, data);
+ }
+
+ public MktBidPx(double data) {
+ super(645, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MktOfferPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MktOfferPx.java
new file mode 100644
index 000000000..18f6c5b70
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MktOfferPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class MktOfferPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 646;
+
+ public MktOfferPx() {
+ super(646);
+ }
+
+ public MktOfferPx(java.math.BigDecimal data) {
+ super(646, data);
+ }
+
+ public MktOfferPx(double data) {
+ super(646, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MoneyLaunderingStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MoneyLaunderingStatus.java
new file mode 100644
index 000000000..4864bab84
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MoneyLaunderingStatus.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MoneyLaunderingStatus extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 481;
+ public static final char PASSED = 'Y';
+ public static final char NOT_CHECKED = 'N';
+ public static final char EXEMPT_BELOW_THE_LIMIT = '1';
+ public static final char EXEMPT_CLIENT_MONEY_TYPE_EXEMPTION = '2';
+ public static final char EXEMPT_AUTHORISED_CREDIT_OR_FINANCIAL_INSTITUTION = '3';
+
+ public MoneyLaunderingStatus() {
+ super(481);
+ }
+
+ public MoneyLaunderingStatus(char data) {
+ super(481, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgDirection.java
new file mode 100644
index 000000000..227552f5a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgDirection.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MsgDirection extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 385;
+ public static final char SEND = 'S';
+ public static final char RECEIVE = 'R';
+
+ public MsgDirection() {
+ super(385);
+ }
+
+ public MsgDirection(char data) {
+ super(385, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgSeqNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgSeqNum.java
new file mode 100644
index 000000000..e9d9b1e38
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgSeqNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MsgSeqNum extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 34;
+
+ public MsgSeqNum() {
+ super(34);
+ }
+
+ public MsgSeqNum(int data) {
+ super(34, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgType.java
new file mode 100644
index 000000000..ffdbadf2b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MsgType.java
@@ -0,0 +1,131 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class MsgType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 35;
+ public static final String HEARTBEAT = "0";
+ public static final String TEST_REQUEST = "1";
+ public static final String RESEND_REQUEST = "2";
+ public static final String REJECT = "3";
+ public static final String SEQUENCE_RESET = "4";
+ public static final String LOGOUT = "5";
+ public static final String INDICATION_OF_INTEREST = "6";
+ public static final String ADVERTISEMENT = "7";
+ public static final String EXECUTION_REPORT = "8";
+ public static final String ORDER_CANCEL_REJECT = "9";
+ public static final String LOGON = "A";
+ public static final String NEWS = "B";
+ public static final String EMAIL = "C";
+ public static final String ORDER_SINGLE = "D";
+ public static final String ORDER_LIST = "E";
+ public static final String ORDER_CANCEL_REQUEST = "F";
+ public static final String ORDER_CANCEL_REPLACE_REQUEST = "G";
+ public static final String ORDER_STATUS_REQUEST = "H";
+ public static final String ALLOCATION_INSTRUCTION = "J";
+ public static final String LIST_CANCEL_REQUEST = "K";
+ public static final String LIST_EXECUTE = "L";
+ public static final String LIST_STATUS_REQUEST = "M";
+ public static final String LIST_STATUS = "N";
+ public static final String ALLOCATION_INSTRUCTION_ACK = "P";
+ public static final String DONT_KNOW_TRADE = "Q";
+ public static final String QUOTE_REQUEST = "R";
+ public static final String QUOTE = "S";
+ public static final String SETTLEMENT_INSTRUCTIONS = "T";
+ public static final String MARKET_DATA_REQUEST = "V";
+ public static final String MARKET_DATA_SNAPSHOT_FULL_REFRESH = "W";
+ public static final String MARKET_DATA_INCREMENTAL_REFRESH = "X";
+ public static final String MARKET_DATA_REQUEST_REJECT = "Y";
+ public static final String QUOTE_CANCEL = "Z";
+ public static final String QUOTE_STATUS_REQUEST = "a";
+ public static final String MASS_QUOTE_ACKNOWLEDGEMENT = "b";
+ public static final String SECURITY_DEFINITION_REQUEST = "c";
+ public static final String SECURITY_DEFINITION = "d";
+ public static final String SECURITY_STATUS_REQUEST = "e";
+ public static final String SECURITY_STATUS = "f";
+ public static final String TRADING_SESSION_STATUS_REQUEST = "g";
+ public static final String TRADING_SESSION_STATUS = "h";
+ public static final String MASS_QUOTE = "i";
+ public static final String BUSINESS_MESSAGE_REJECT = "j";
+ public static final String BID_REQUEST = "k";
+ public static final String BID_RESPONSE = "l";
+ public static final String LIST_STRIKE_PRICE = "m";
+ public static final String XML_MESSAGE = "n";
+ public static final String REGISTRATION_INSTRUCTIONS = "o";
+ public static final String REGISTRATION_INSTRUCTIONS_RESPONSE = "p";
+ public static final String ORDER_MASS_CANCEL_REQUEST = "q";
+ public static final String ORDER_MASS_CANCEL_REPORT = "r";
+ public static final String NEW_ORDER_CROSS = "s";
+ public static final String CROSS_ORDER_CANCEL_REPLACE_REQUEST = "t";
+ public static final String CROSS_ORDER_CANCEL_REQUEST = "u";
+ public static final String SECURITY_TYPE_REQUEST = "v";
+ public static final String SECURITY_TYPES = "w";
+ public static final String SECURITY_LIST_REQUEST = "x";
+ public static final String SECURITY_LIST = "y";
+ public static final String DERIVATIVE_SECURITY_LIST_REQUEST = "z";
+ public static final String DERIVATIVE_SECURITY_LIST = "AA";
+ public static final String NEW_ORDER_MULTILEG = "AB";
+ public static final String MULTILEG_ORDER_CANCEL_REPLACE = "AC";
+ public static final String TRADE_CAPTURE_REPORT_REQUEST = "AD";
+ public static final String TRADE_CAPTURE_REPORT = "AE";
+ public static final String ORDER_MASS_STATUS_REQUEST = "AF";
+ public static final String QUOTE_REQUEST_REJECT = "AG";
+ public static final String RFQ_REQUEST = "AH";
+ public static final String QUOTE_STATUS_REPORT = "AI";
+ public static final String QUOTE_RESPONSE = "AJ";
+ public static final String CONFIRMATION = "AK";
+ public static final String POSITION_MAINTENANCE_REQUEST = "AL";
+ public static final String POSITION_MAINTENANCE_REPORT = "AM";
+ public static final String REQUEST_FOR_POSITIONS = "AN";
+ public static final String REQUEST_FOR_POSITIONS_ACK = "AO";
+ public static final String POSITION_REPORT = "AP";
+ public static final String TRADE_CAPTURE_REPORT_REQUEST_ACK = "AQ";
+ public static final String TRADE_CAPTURE_REPORT_ACK = "AR";
+ public static final String ALLOCATION_REPORT = "AS";
+ public static final String ALLOCATION_REPORT_ACK = "AT";
+ public static final String CONFIRMATION_ACK = "AU";
+ public static final String SETTLEMENT_INSTRUCTION_REQUEST = "AV";
+ public static final String ASSIGNMENT_REPORT = "AW";
+ public static final String COLLATERAL_REQUEST = "AX";
+ public static final String COLLATERAL_ASSIGNMENT = "AY";
+ public static final String COLLATERAL_RESPONSE = "AZ";
+ public static final String COLLATERAL_REPORT = "BA";
+ public static final String COLLATERAL_INQUIRY = "BB";
+ public static final String NETWORK_STATUS_REQUEST = "BC";
+ public static final String NETWORK_STATUS_RESPONSE = "BD";
+ public static final String USER_REQUEST = "BE";
+ public static final String USER_RESPONSE = "BF";
+ public static final String COLLATERAL_INQUIRY_ACK = "BG";
+ public static final String CONFIRMATION_REQUEST = "BH";
+
+ public MsgType() {
+ super(35);
+ }
+
+ public MsgType(String data) {
+ super(35, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MultiLegReportingType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MultiLegReportingType.java
new file mode 100644
index 000000000..04808bb35
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MultiLegReportingType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class MultiLegReportingType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 442;
+ public static final char SINGLE_SECURITY = '1';
+ public static final char INDIVIDUAL_LEG_OF_A_MULTI_LEG_SECURITY = '2';
+ public static final char MULTI_LEG_SECURITY = '3';
+
+ public MultiLegReportingType() {
+ super(442);
+ }
+
+ public MultiLegReportingType(char data) {
+ super(442, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MultiLegRptTypeReq.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MultiLegRptTypeReq.java
new file mode 100644
index 000000000..2c78684e7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/MultiLegRptTypeReq.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class MultiLegRptTypeReq extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 563;
+ public static final int REPORT_BY_MULITLEG_SECURITY_ONLY = 0;
+ public static final int REPORT_BY_MULTILEG_SECURITY_AND_BY_INSTRUMENT_LEGS_BELONGING_TO_THE_MULTILEG_SECURITY = 1;
+ public static final int REPORT_BY_INSTRUMENT_LEGS_BELONGING_TO_THE_MULTILEG_SECURITY_ONLY = 2;
+
+ public MultiLegRptTypeReq() {
+ super(563);
+ }
+
+ public MultiLegRptTypeReq(int data) {
+ super(563, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyID.java
new file mode 100644
index 000000000..0a6b475eb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Nested2PartyID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 757;
+
+ public Nested2PartyID() {
+ super(757);
+ }
+
+ public Nested2PartyID(String data) {
+ super(757, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyIDSource.java
new file mode 100644
index 000000000..206b1a2bc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Nested2PartyIDSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 758;
+
+ public Nested2PartyIDSource() {
+ super(758);
+ }
+
+ public Nested2PartyIDSource(char data) {
+ super(758, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyRole.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyRole.java
new file mode 100644
index 000000000..48cd63641
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartyRole.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Nested2PartyRole extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 759;
+
+ public Nested2PartyRole() {
+ super(759);
+ }
+
+ public Nested2PartyRole(int data) {
+ super(759, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartySubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartySubID.java
new file mode 100644
index 000000000..f9409d1d6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartySubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Nested2PartySubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 760;
+
+ public Nested2PartySubID() {
+ super(760);
+ }
+
+ public Nested2PartySubID(String data) {
+ super(760, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartySubIDType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartySubIDType.java
new file mode 100644
index 000000000..f2da05c0a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested2PartySubIDType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Nested2PartySubIDType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 807;
+
+ public Nested2PartySubIDType() {
+ super(807);
+ }
+
+ public Nested2PartySubIDType(int data) {
+ super(807, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyID.java
new file mode 100644
index 000000000..83a8af550
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Nested3PartyID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 949;
+
+ public Nested3PartyID() {
+ super(949);
+ }
+
+ public Nested3PartyID(String data) {
+ super(949, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyIDSource.java
new file mode 100644
index 000000000..3b6ee6d6a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Nested3PartyIDSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 950;
+
+ public Nested3PartyIDSource() {
+ super(950);
+ }
+
+ public Nested3PartyIDSource(char data) {
+ super(950, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyRole.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyRole.java
new file mode 100644
index 000000000..36bb50e6e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartyRole.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Nested3PartyRole extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 951;
+
+ public Nested3PartyRole() {
+ super(951);
+ }
+
+ public Nested3PartyRole(int data) {
+ super(951, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartySubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartySubID.java
new file mode 100644
index 000000000..09716cb5f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartySubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Nested3PartySubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 953;
+
+ public Nested3PartySubID() {
+ super(953);
+ }
+
+ public Nested3PartySubID(String data) {
+ super(953, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartySubIDType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartySubIDType.java
new file mode 100644
index 000000000..af0542f94
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Nested3PartySubIDType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Nested3PartySubIDType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 954;
+
+ public Nested3PartySubIDType() {
+ super(954);
+ }
+
+ public Nested3PartySubIDType(int data) {
+ super(954, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyID.java
new file mode 100644
index 000000000..a01a07cfc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class NestedPartyID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 524;
+
+ public NestedPartyID() {
+ super(524);
+ }
+
+ public NestedPartyID(String data) {
+ super(524, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyIDSource.java
new file mode 100644
index 000000000..878bfbd16
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class NestedPartyIDSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 525;
+
+ public NestedPartyIDSource() {
+ super(525);
+ }
+
+ public NestedPartyIDSource(char data) {
+ super(525, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyRole.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyRole.java
new file mode 100644
index 000000000..4cc644b5e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartyRole.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NestedPartyRole extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 538;
+
+ public NestedPartyRole() {
+ super(538);
+ }
+
+ public NestedPartyRole(int data) {
+ super(538, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartySubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartySubID.java
new file mode 100644
index 000000000..3d61019bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartySubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class NestedPartySubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 545;
+
+ public NestedPartySubID() {
+ super(545);
+ }
+
+ public NestedPartySubID(String data) {
+ super(545, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartySubIDType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartySubIDType.java
new file mode 100644
index 000000000..1c9a626de
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NestedPartySubIDType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NestedPartySubIDType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 805;
+
+ public NestedPartySubIDType() {
+ super(805);
+ }
+
+ public NestedPartySubIDType(int data) {
+ super(805, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetChgPrevDay.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetChgPrevDay.java
new file mode 100644
index 000000000..7c657e3a3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetChgPrevDay.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class NetChgPrevDay extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 451;
+
+ public NetChgPrevDay() {
+ super(451);
+ }
+
+ public NetChgPrevDay(java.math.BigDecimal data) {
+ super(451, data);
+ }
+
+ public NetChgPrevDay(double data) {
+ super(451, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetGrossInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetGrossInd.java
new file mode 100644
index 000000000..576e3c58c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetGrossInd.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NetGrossInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 430;
+ public static final int NET = 1;
+ public static final int GROSS = 2;
+
+ public NetGrossInd() {
+ super(430);
+ }
+
+ public NetGrossInd(int data) {
+ super(430, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetMoney.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetMoney.java
new file mode 100644
index 000000000..61c7a52bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetMoney.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class NetMoney extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 118;
+
+ public NetMoney() {
+ super(118);
+ }
+
+ public NetMoney(java.math.BigDecimal data) {
+ super(118, data);
+ }
+
+ public NetMoney(double data) {
+ super(118, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkRequestID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkRequestID.java
new file mode 100644
index 000000000..020b0a6a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkRequestID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class NetworkRequestID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 933;
+
+ public NetworkRequestID() {
+ super(933);
+ }
+
+ public NetworkRequestID(String data) {
+ super(933, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkRequestType.java
new file mode 100644
index 000000000..9589cae8c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkRequestType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NetworkRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 935;
+ public static final int SNAPSHOT = 1;
+ public static final int SUBSCRIBE = 2;
+ public static final int STOP_SUBSCRIBING = 4;
+ public static final int LEVEL_OF_DETAIL = 8;
+
+ public NetworkRequestType() {
+ super(935);
+ }
+
+ public NetworkRequestType(int data) {
+ super(935, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkResponseID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkResponseID.java
new file mode 100644
index 000000000..91742951a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkResponseID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class NetworkResponseID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 932;
+
+ public NetworkResponseID() {
+ super(932);
+ }
+
+ public NetworkResponseID(String data) {
+ super(932, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkStatusResponseType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkStatusResponseType.java
new file mode 100644
index 000000000..69849bf0e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NetworkStatusResponseType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NetworkStatusResponseType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 937;
+ public static final int FULL = 1;
+ public static final int INCREMENTAL_UPDATE = 2;
+
+ public NetworkStatusResponseType() {
+ super(937);
+ }
+
+ public NetworkStatusResponseType(int data) {
+ super(937, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NewPassword.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NewPassword.java
new file mode 100644
index 000000000..845ba1028
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NewPassword.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class NewPassword extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 925;
+
+ public NewPassword() {
+ super(925);
+ }
+
+ public NewPassword(String data) {
+ super(925, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NewSeqNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NewSeqNo.java
new file mode 100644
index 000000000..d5f1e2fd5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NewSeqNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NewSeqNo extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 36;
+
+ public NewSeqNo() {
+ super(36);
+ }
+
+ public NewSeqNo(int data) {
+ super(36, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NextExpectedMsgSeqNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NextExpectedMsgSeqNum.java
new file mode 100644
index 000000000..12fc47a65
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NextExpectedMsgSeqNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NextExpectedMsgSeqNum extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 789;
+
+ public NextExpectedMsgSeqNum() {
+ super(789);
+ }
+
+ public NextExpectedMsgSeqNum(int data) {
+ super(789, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAffectedOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAffectedOrders.java
new file mode 100644
index 000000000..c3251a256
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAffectedOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoAffectedOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 534;
+
+ public NoAffectedOrders() {
+ super(534);
+ }
+
+ public NoAffectedOrders(int data) {
+ super(534, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAllocs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAllocs.java
new file mode 100644
index 000000000..fa019071c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAllocs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoAllocs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 78;
+
+ public NoAllocs() {
+ super(78);
+ }
+
+ public NoAllocs(int data) {
+ super(78, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAltMDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAltMDSource.java
new file mode 100644
index 000000000..c0ed8414b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoAltMDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoAltMDSource extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 816;
+
+ public NoAltMDSource() {
+ super(816);
+ }
+
+ public NoAltMDSource(int data) {
+ super(816, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoBidComponents.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoBidComponents.java
new file mode 100644
index 000000000..086689ec1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoBidComponents.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoBidComponents extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 420;
+
+ public NoBidComponents() {
+ super(420);
+ }
+
+ public NoBidComponents(int data) {
+ super(420, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoBidDescriptors.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoBidDescriptors.java
new file mode 100644
index 000000000..93a16541d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoBidDescriptors.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoBidDescriptors extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 398;
+
+ public NoBidDescriptors() {
+ super(398);
+ }
+
+ public NoBidDescriptors(int data) {
+ super(398, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCapacities.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCapacities.java
new file mode 100644
index 000000000..a7c14f297
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCapacities.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoCapacities extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 862;
+
+ public NoCapacities() {
+ super(862);
+ }
+
+ public NoCapacities(int data) {
+ super(862, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoClearingInstructions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoClearingInstructions.java
new file mode 100644
index 000000000..6148ac8a2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoClearingInstructions.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoClearingInstructions extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 576;
+
+ public NoClearingInstructions() {
+ super(576);
+ }
+
+ public NoClearingInstructions(int data) {
+ super(576, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCollInquiryQualifier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCollInquiryQualifier.java
new file mode 100644
index 000000000..3a90febff
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCollInquiryQualifier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoCollInquiryQualifier extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 938;
+
+ public NoCollInquiryQualifier() {
+ super(938);
+ }
+
+ public NoCollInquiryQualifier(int data) {
+ super(938, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCompIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCompIDs.java
new file mode 100644
index 000000000..e28e208d3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoCompIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoCompIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 936;
+
+ public NoCompIDs() {
+ super(936);
+ }
+
+ public NoCompIDs(int data) {
+ super(936, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoContAmts.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoContAmts.java
new file mode 100644
index 000000000..6d6cc2e7e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoContAmts.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoContAmts extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 518;
+
+ public NoContAmts() {
+ super(518);
+ }
+
+ public NoContAmts(int data) {
+ super(518, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoContraBrokers.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoContraBrokers.java
new file mode 100644
index 000000000..f8b474bce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoContraBrokers.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoContraBrokers extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 382;
+
+ public NoContraBrokers() {
+ super(382);
+ }
+
+ public NoContraBrokers(int data) {
+ super(382, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDates.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDates.java
new file mode 100644
index 000000000..c17cfb082
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDates.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoDates extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 580;
+
+ public NoDates() {
+ super(580);
+ }
+
+ public NoDates(int data) {
+ super(580, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDistribInsts.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDistribInsts.java
new file mode 100644
index 000000000..2e92d5c11
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDistribInsts.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoDistribInsts extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 510;
+
+ public NoDistribInsts() {
+ super(510);
+ }
+
+ public NoDistribInsts(int data) {
+ super(510, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDlvyInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDlvyInst.java
new file mode 100644
index 000000000..00888c5d3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoDlvyInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoDlvyInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 85;
+
+ public NoDlvyInst() {
+ super(85);
+ }
+
+ public NoDlvyInst(int data) {
+ super(85, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoEvents.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoEvents.java
new file mode 100644
index 000000000..7f5d7a722
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoEvents.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoEvents extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 864;
+
+ public NoEvents() {
+ super(864);
+ }
+
+ public NoEvents(int data) {
+ super(864, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoExecs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoExecs.java
new file mode 100644
index 000000000..25e8fa9a7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoExecs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoExecs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 124;
+
+ public NoExecs() {
+ super(124);
+ }
+
+ public NoExecs(int data) {
+ super(124, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoHops.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoHops.java
new file mode 100644
index 000000000..11d75e2d2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoHops.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoHops extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 627;
+
+ public NoHops() {
+ super(627);
+ }
+
+ public NoHops(int data) {
+ super(627, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoIOIQualifiers.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoIOIQualifiers.java
new file mode 100644
index 000000000..656cb366a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoIOIQualifiers.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoIOIQualifiers extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 199;
+
+ public NoIOIQualifiers() {
+ super(199);
+ }
+
+ public NoIOIQualifiers(int data) {
+ super(199, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoInstrAttrib.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoInstrAttrib.java
new file mode 100644
index 000000000..f5431e977
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoInstrAttrib.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoInstrAttrib extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 870;
+
+ public NoInstrAttrib() {
+ super(870);
+ }
+
+ public NoInstrAttrib(int data) {
+ super(870, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegAllocs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegAllocs.java
new file mode 100644
index 000000000..6bd139720
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegAllocs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoLegAllocs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 670;
+
+ public NoLegAllocs() {
+ super(670);
+ }
+
+ public NoLegAllocs(int data) {
+ super(670, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegSecurityAltID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegSecurityAltID.java
new file mode 100644
index 000000000..eeeda6439
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegSecurityAltID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoLegSecurityAltID extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 604;
+
+ public NoLegSecurityAltID() {
+ super(604);
+ }
+
+ public NoLegSecurityAltID(int data) {
+ super(604, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegStipulations.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegStipulations.java
new file mode 100644
index 000000000..a439f0d97
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegStipulations.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoLegStipulations extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 683;
+
+ public NoLegStipulations() {
+ super(683);
+ }
+
+ public NoLegStipulations(int data) {
+ super(683, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegs.java
new file mode 100644
index 000000000..e4a85a32b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoLegs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoLegs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 555;
+
+ public NoLegs() {
+ super(555);
+ }
+
+ public NoLegs(int data) {
+ super(555, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMDEntries.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMDEntries.java
new file mode 100644
index 000000000..1a56cc311
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMDEntries.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMDEntries extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 268;
+
+ public NoMDEntries() {
+ super(268);
+ }
+
+ public NoMDEntries(int data) {
+ super(268, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMDEntryTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMDEntryTypes.java
new file mode 100644
index 000000000..7c257e04a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMDEntryTypes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMDEntryTypes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 267;
+
+ public NoMDEntryTypes() {
+ super(267);
+ }
+
+ public NoMDEntryTypes(int data) {
+ super(267, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMiscFees.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMiscFees.java
new file mode 100644
index 000000000..04e5cad9c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMiscFees.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMiscFees extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 136;
+
+ public NoMiscFees() {
+ super(136);
+ }
+
+ public NoMiscFees(int data) {
+ super(136, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMsgTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMsgTypes.java
new file mode 100644
index 000000000..e1dbaae5f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoMsgTypes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoMsgTypes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 384;
+
+ public NoMsgTypes() {
+ super(384);
+ }
+
+ public NoMsgTypes(int data) {
+ super(384, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested2PartyIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested2PartyIDs.java
new file mode 100644
index 000000000..f83ee962b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested2PartyIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoNested2PartyIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 756;
+
+ public NoNested2PartyIDs() {
+ super(756);
+ }
+
+ public NoNested2PartyIDs(int data) {
+ super(756, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested2PartySubIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested2PartySubIDs.java
new file mode 100644
index 000000000..682bb8399
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested2PartySubIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoNested2PartySubIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 806;
+
+ public NoNested2PartySubIDs() {
+ super(806);
+ }
+
+ public NoNested2PartySubIDs(int data) {
+ super(806, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested3PartyIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested3PartyIDs.java
new file mode 100644
index 000000000..96e99d7e7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested3PartyIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoNested3PartyIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 948;
+
+ public NoNested3PartyIDs() {
+ super(948);
+ }
+
+ public NoNested3PartyIDs(int data) {
+ super(948, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested3PartySubIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested3PartySubIDs.java
new file mode 100644
index 000000000..8c61569db
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNested3PartySubIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoNested3PartySubIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 952;
+
+ public NoNested3PartySubIDs() {
+ super(952);
+ }
+
+ public NoNested3PartySubIDs(int data) {
+ super(952, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNestedPartyIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNestedPartyIDs.java
new file mode 100644
index 000000000..53fee3e48
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNestedPartyIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoNestedPartyIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 539;
+
+ public NoNestedPartyIDs() {
+ super(539);
+ }
+
+ public NoNestedPartyIDs(int data) {
+ super(539, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNestedPartySubIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNestedPartySubIDs.java
new file mode 100644
index 000000000..3a55dc5ce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoNestedPartySubIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoNestedPartySubIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 804;
+
+ public NoNestedPartySubIDs() {
+ super(804);
+ }
+
+ public NoNestedPartySubIDs(int data) {
+ super(804, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoOrders.java
new file mode 100644
index 000000000..2e9b2755d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 73;
+
+ public NoOrders() {
+ super(73);
+ }
+
+ public NoOrders(int data) {
+ super(73, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPartyIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPartyIDs.java
new file mode 100644
index 000000000..1067e791d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPartyIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoPartyIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 453;
+
+ public NoPartyIDs() {
+ super(453);
+ }
+
+ public NoPartyIDs(int data) {
+ super(453, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPartySubIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPartySubIDs.java
new file mode 100644
index 000000000..4e30f6e8e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPartySubIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoPartySubIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 802;
+
+ public NoPartySubIDs() {
+ super(802);
+ }
+
+ public NoPartySubIDs(int data) {
+ super(802, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPosAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPosAmt.java
new file mode 100644
index 000000000..07fe12fd4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPosAmt.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoPosAmt extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 753;
+
+ public NoPosAmt() {
+ super(753);
+ }
+
+ public NoPosAmt(int data) {
+ super(753, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPositions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPositions.java
new file mode 100644
index 000000000..bf5b23926
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoPositions.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoPositions extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 702;
+
+ public NoPositions() {
+ super(702);
+ }
+
+ public NoPositions(int data) {
+ super(702, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteEntries.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteEntries.java
new file mode 100644
index 000000000..1ca30fd8f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteEntries.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoQuoteEntries extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 295;
+
+ public NoQuoteEntries() {
+ super(295);
+ }
+
+ public NoQuoteEntries(int data) {
+ super(295, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteQualifiers.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteQualifiers.java
new file mode 100644
index 000000000..4e681c559
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteQualifiers.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoQuoteQualifiers extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 735;
+
+ public NoQuoteQualifiers() {
+ super(735);
+ }
+
+ public NoQuoteQualifiers(int data) {
+ super(735, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteSets.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteSets.java
new file mode 100644
index 000000000..a1538a37b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoQuoteSets.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoQuoteSets extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 296;
+
+ public NoQuoteSets() {
+ super(296);
+ }
+
+ public NoQuoteSets(int data) {
+ super(296, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRegistDtls.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRegistDtls.java
new file mode 100644
index 000000000..67ec6c317
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRegistDtls.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRegistDtls extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 473;
+
+ public NoRegistDtls() {
+ super(473);
+ }
+
+ public NoRegistDtls(int data) {
+ super(473, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRelatedSym.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRelatedSym.java
new file mode 100644
index 000000000..4d0644498
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRelatedSym.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRelatedSym extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 146;
+
+ public NoRelatedSym() {
+ super(146);
+ }
+
+ public NoRelatedSym(int data) {
+ super(146, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRoutingIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRoutingIDs.java
new file mode 100644
index 000000000..7447bb945
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRoutingIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRoutingIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 215;
+
+ public NoRoutingIDs() {
+ super(215);
+ }
+
+ public NoRoutingIDs(int data) {
+ super(215, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRpts.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRpts.java
new file mode 100644
index 000000000..582b07ad5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoRpts.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoRpts extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 82;
+
+ public NoRpts() {
+ super(82);
+ }
+
+ public NoRpts(int data) {
+ super(82, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSecurityAltID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSecurityAltID.java
new file mode 100644
index 000000000..b2f9829bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSecurityAltID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoSecurityAltID extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 454;
+
+ public NoSecurityAltID() {
+ super(454);
+ }
+
+ public NoSecurityAltID(int data) {
+ super(454, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSecurityTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSecurityTypes.java
new file mode 100644
index 000000000..27d376876
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSecurityTypes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoSecurityTypes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 558;
+
+ public NoSecurityTypes() {
+ super(558);
+ }
+
+ public NoSecurityTypes(int data) {
+ super(558, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlInst.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlInst.java
new file mode 100644
index 000000000..8320eff4f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlInst.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoSettlInst extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 778;
+
+ public NoSettlInst() {
+ super(778);
+ }
+
+ public NoSettlInst(int data) {
+ super(778, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlPartyIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlPartyIDs.java
new file mode 100644
index 000000000..5ec40484a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlPartyIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoSettlPartyIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 781;
+
+ public NoSettlPartyIDs() {
+ super(781);
+ }
+
+ public NoSettlPartyIDs(int data) {
+ super(781, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlPartySubIDs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlPartySubIDs.java
new file mode 100644
index 000000000..d02340713
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSettlPartySubIDs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoSettlPartySubIDs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 801;
+
+ public NoSettlPartySubIDs() {
+ super(801);
+ }
+
+ public NoSettlPartySubIDs(int data) {
+ super(801, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSides.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSides.java
new file mode 100644
index 000000000..71bd888fb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoSides.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoSides extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 552;
+ public static final int ONE_SIDE = 1;
+ public static final int BOTH_SIDES = 2;
+
+ public NoSides() {
+ super(552);
+ }
+
+ public NoSides(int data) {
+ super(552, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoStipulations.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoStipulations.java
new file mode 100644
index 000000000..27765b8f8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoStipulations.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoStipulations extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 232;
+
+ public NoStipulations() {
+ super(232);
+ }
+
+ public NoStipulations(int data) {
+ super(232, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoStrikes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoStrikes.java
new file mode 100644
index 000000000..09efdd20b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoStrikes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoStrikes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 428;
+
+ public NoStrikes() {
+ super(428);
+ }
+
+ public NoStrikes(int data) {
+ super(428, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTrades.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTrades.java
new file mode 100644
index 000000000..0f38f2b1f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTrades.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoTrades extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 897;
+
+ public NoTrades() {
+ super(897);
+ }
+
+ public NoTrades(int data) {
+ super(897, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTradingSessions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTradingSessions.java
new file mode 100644
index 000000000..406353149
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTradingSessions.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoTradingSessions extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 386;
+
+ public NoTradingSessions() {
+ super(386);
+ }
+
+ public NoTradingSessions(int data) {
+ super(386, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTrdRegTimestamps.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTrdRegTimestamps.java
new file mode 100644
index 000000000..0270660bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoTrdRegTimestamps.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoTrdRegTimestamps extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 768;
+
+ public NoTrdRegTimestamps() {
+ super(768);
+ }
+
+ public NoTrdRegTimestamps(int data) {
+ super(768, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyingSecurityAltID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyingSecurityAltID.java
new file mode 100644
index 000000000..7464fd021
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyingSecurityAltID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoUnderlyingSecurityAltID extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 457;
+
+ public NoUnderlyingSecurityAltID() {
+ super(457);
+ }
+
+ public NoUnderlyingSecurityAltID(int data) {
+ super(457, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyingStips.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyingStips.java
new file mode 100644
index 000000000..e3113a121
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyingStips.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoUnderlyingStips extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 887;
+
+ public NoUnderlyingStips() {
+ super(887);
+ }
+
+ public NoUnderlyingStips(int data) {
+ super(887, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyings.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyings.java
new file mode 100644
index 000000000..2e65ab211
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NoUnderlyings.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NoUnderlyings extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 711;
+
+ public NoUnderlyings() {
+ super(711);
+ }
+
+ public NoUnderlyings(int data) {
+ super(711, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NotifyBrokerOfCredit.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NotifyBrokerOfCredit.java
new file mode 100644
index 000000000..46cc02240
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NotifyBrokerOfCredit.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class NotifyBrokerOfCredit extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 208;
+
+ public NotifyBrokerOfCredit() {
+ super(208);
+ }
+
+ public NotifyBrokerOfCredit(boolean data) {
+ super(208, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumBidders.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumBidders.java
new file mode 100644
index 000000000..e561c355a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumBidders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumBidders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 417;
+
+ public NumBidders() {
+ super(417);
+ }
+
+ public NumBidders(int data) {
+ super(417, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumDaysInterest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumDaysInterest.java
new file mode 100644
index 000000000..ecf7b3d68
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumDaysInterest.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumDaysInterest extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 157;
+
+ public NumDaysInterest() {
+ super(157);
+ }
+
+ public NumDaysInterest(int data) {
+ super(157, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumTickets.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumTickets.java
new file mode 100644
index 000000000..a006a2920
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumTickets.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumTickets extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 395;
+
+ public NumTickets() {
+ super(395);
+ }
+
+ public NumTickets(int data) {
+ super(395, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumberOfOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumberOfOrders.java
new file mode 100644
index 000000000..0eebeba12
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/NumberOfOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class NumberOfOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 346;
+
+ public NumberOfOrders() {
+ super(346);
+ }
+
+ public NumberOfOrders(int data) {
+ super(346, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OddLot.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OddLot.java
new file mode 100644
index 000000000..830b5bd33
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OddLot.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class OddLot extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 575;
+
+ public OddLot() {
+ super(575);
+ }
+
+ public OddLot(boolean data) {
+ super(575, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferForwardPoints.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferForwardPoints.java
new file mode 100644
index 000000000..a4fd12bbf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferForwardPoints.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferForwardPoints extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 191;
+
+ public OfferForwardPoints() {
+ super(191);
+ }
+
+ public OfferForwardPoints(java.math.BigDecimal data) {
+ super(191, data);
+ }
+
+ public OfferForwardPoints(double data) {
+ super(191, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferForwardPoints2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferForwardPoints2.java
new file mode 100644
index 000000000..266f495f4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferForwardPoints2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferForwardPoints2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 643;
+
+ public OfferForwardPoints2() {
+ super(643);
+ }
+
+ public OfferForwardPoints2(java.math.BigDecimal data) {
+ super(643, data);
+ }
+
+ public OfferForwardPoints2(double data) {
+ super(643, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferPx.java
new file mode 100644
index 000000000..3c9534226
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 133;
+
+ public OfferPx() {
+ super(133);
+ }
+
+ public OfferPx(java.math.BigDecimal data) {
+ super(133, data);
+ }
+
+ public OfferPx(double data) {
+ super(133, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferSize.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferSize.java
new file mode 100644
index 000000000..64ac58112
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferSize.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferSize extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 135;
+
+ public OfferSize() {
+ super(135);
+ }
+
+ public OfferSize(java.math.BigDecimal data) {
+ super(135, data);
+ }
+
+ public OfferSize(double data) {
+ super(135, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferSpotRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferSpotRate.java
new file mode 100644
index 000000000..ac8e75252
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferSpotRate.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OfferSpotRate extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 190;
+
+ public OfferSpotRate() {
+ super(190);
+ }
+
+ public OfferSpotRate(java.math.BigDecimal data) {
+ super(190, data);
+ }
+
+ public OfferSpotRate(double data) {
+ super(190, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferYield.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferYield.java
new file mode 100644
index 000000000..e5087eea9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OfferYield.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class OfferYield extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 634;
+
+ public OfferYield() {
+ super(634);
+ }
+
+ public OfferYield(double data) {
+ super(634, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfCompID.java
new file mode 100644
index 000000000..c4281ca1a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OnBehalfOfCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 115;
+
+ public OnBehalfOfCompID() {
+ super(115);
+ }
+
+ public OnBehalfOfCompID(String data) {
+ super(115, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfLocationID.java
new file mode 100644
index 000000000..2acf2a134
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OnBehalfOfLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 144;
+
+ public OnBehalfOfLocationID() {
+ super(144);
+ }
+
+ public OnBehalfOfLocationID(String data) {
+ super(144, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfSubID.java
new file mode 100644
index 000000000..2d3faebc4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OnBehalfOfSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OnBehalfOfSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 116;
+
+ public OnBehalfOfSubID() {
+ super(116);
+ }
+
+ public OnBehalfOfSubID(String data) {
+ super(116, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OpenCloseSettlFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OpenCloseSettlFlag.java
new file mode 100644
index 000000000..53aac51c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OpenCloseSettlFlag.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OpenCloseSettlFlag extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 286;
+ public static final String DAILY_OPEN_CLOSE_SETTLEMENT_ENTRY = "0";
+ public static final String SESSION_OPEN_CLOSE_SETTLEMENT_ENTRY = "1";
+ public static final String DELIVERY_SETTLEMENT_ENTRY = "2";
+ public static final String EXPECTED_ENTRY = "3";
+ public static final String ENTRY_FROM_PREVIOUS_BUSINESS_DAY = "4";
+ public static final String THEORETICAL_PRICE_VALUE = "5";
+
+ public OpenCloseSettlFlag() {
+ super(286);
+ }
+
+ public OpenCloseSettlFlag(String data) {
+ super(286, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OpenInterest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OpenInterest.java
new file mode 100644
index 000000000..ef205939e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OpenInterest.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OpenInterest extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 746;
+
+ public OpenInterest() {
+ super(746);
+ }
+
+ public OpenInterest(java.math.BigDecimal data) {
+ super(746, data);
+ }
+
+ public OpenInterest(double data) {
+ super(746, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OptAttribute.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OptAttribute.java
new file mode 100644
index 000000000..55a23b733
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OptAttribute.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OptAttribute extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 206;
+
+ public OptAttribute() {
+ super(206);
+ }
+
+ public OptAttribute(char data) {
+ super(206, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdRejReason.java
new file mode 100644
index 000000000..8b848f365
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdRejReason.java
@@ -0,0 +1,55 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class OrdRejReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 103;
+ public static final int BROKER_EXCHANGE_OPTION = 0;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE_CLOSED = 2;
+ public static final int ORDER_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int UNKNOWN_ORDER = 5;
+ public static final int DUPLICATE_ORDER = 6;
+ public static final int DUPLICATE_OF_A_VERBALLY_COMMUNICATED_ORDER = 7;
+ public static final int STALE_ORDER = 8;
+ public static final int TRADE_ALONG_REQUIRED = 9;
+ public static final int INVALID_INVESTOR_ID = 10;
+ public static final int UNSUPPORTED_ORDER_CHARACTERISTIC = 11;
+ public static final int SURVEILLENCE_OPTION = 12;
+ public static final int INCORRECT_QUANTITY = 13;
+ public static final int INCORRECT_ALLOCATED_QUANTITY = 14;
+ public static final int UNKNOWN_ACCOUNT = 15;
+ public static final int OTHER = 99;
+
+ public OrdRejReason() {
+ super(103);
+ }
+
+ public OrdRejReason(int data) {
+ super(103, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdStatus.java
new file mode 100644
index 000000000..b3ea79b8b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdStatus.java
@@ -0,0 +1,53 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OrdStatus extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 39;
+ public static final char NEW = '0';
+ public static final char PARTIALLY_FILLED = '1';
+ public static final char FILLED = '2';
+ public static final char DONE_FOR_DAY = '3';
+ public static final char CANCELED = '4';
+ public static final char REPLACED = '5';
+ public static final char PENDING_CANCEL = '6';
+ public static final char STOPPED = '7';
+ public static final char REJECTED = '8';
+ public static final char SUSPENDED = '9';
+ public static final char PENDING_NEW = 'A';
+ public static final char CALCULATED = 'B';
+ public static final char EXPIRED = 'C';
+ public static final char ACCEPTED_FOR_BIDDING = 'D';
+ public static final char PENDING_REPLACE = 'E';
+
+ public OrdStatus() {
+ super(39);
+ }
+
+ public OrdStatus(char data) {
+ super(39, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdStatusReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdStatusReqID.java
new file mode 100644
index 000000000..befcb1b36
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdStatusReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrdStatusReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 790;
+
+ public OrdStatusReqID() {
+ super(790);
+ }
+
+ public OrdStatusReqID(String data) {
+ super(790, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdType.java
new file mode 100644
index 000000000..e96be4ebd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrdType.java
@@ -0,0 +1,61 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OrdType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 40;
+ public static final char MARKET = '1';
+ public static final char LIMIT = '2';
+ public static final char STOP = '3';
+ public static final char STOP_LIMIT = '4';
+ public static final char MARKET_ON_CLOSE = '5';
+ public static final char WITH_OR_WITHOUT = '6';
+ public static final char LIMIT_OR_BETTER = '7';
+ public static final char LIMIT_WITH_OR_WITHOUT = '8';
+ public static final char ON_BASIS = '9';
+ public static final char ON_CLOSE = 'A';
+ public static final char LIMIT_ON_CLOSE = 'B';
+ public static final char FOREX_MARKET = 'C';
+ public static final char PREVIOUSLY_QUOTED = 'D';
+ public static final char PREVIOUSLY_INDICATED = 'E';
+ public static final char FOREX_LIMIT = 'F';
+ public static final char FOREX_SWAP = 'G';
+ public static final char FOREX_PREVIOUSLY_QUOTED = 'H';
+ public static final char FUNARI = 'I';
+ public static final char MARKET_IF_TOUCHED = 'J';
+ public static final char MARKET_WITH_LEFTOVER_AS_LIMIT = 'K';
+ public static final char PREVIOUS_FUND_VALUATION_POINT = 'L';
+ public static final char NEXT_FUND_VALUATION_POINT = 'M';
+ public static final char PEGGED = 'P';
+
+ public OrdType() {
+ super(40);
+ }
+
+ public OrdType(char data) {
+ super(40, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderAvgPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderAvgPx.java
new file mode 100644
index 000000000..9e79baaf8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderAvgPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderAvgPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 799;
+
+ public OrderAvgPx() {
+ super(799);
+ }
+
+ public OrderAvgPx(java.math.BigDecimal data) {
+ super(799, data);
+ }
+
+ public OrderAvgPx(double data) {
+ super(799, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderBookingQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderBookingQty.java
new file mode 100644
index 000000000..108a920ab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderBookingQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderBookingQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 800;
+
+ public OrderBookingQty() {
+ super(800);
+ }
+
+ public OrderBookingQty(java.math.BigDecimal data) {
+ super(800, data);
+ }
+
+ public OrderBookingQty(double data) {
+ super(800, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderCapacity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderCapacity.java
new file mode 100644
index 000000000..7f6651f81
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderCapacity.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OrderCapacity extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 528;
+ public static final char AGENCY = 'A';
+ public static final char PROPRIETARY = 'G';
+ public static final char INDIVIDUAL = 'I';
+ public static final char PRINCIPAL = 'P';
+ public static final char RISKLESS_PRINCIPAL = 'R';
+ public static final char AGENT_FOR_OTHER_MEMBER = 'W';
+
+ public OrderCapacity() {
+ super(528);
+ }
+
+ public OrderCapacity(char data) {
+ super(528, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderCapacityQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderCapacityQty.java
new file mode 100644
index 000000000..ca5c667c1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderCapacityQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderCapacityQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 863;
+
+ public OrderCapacityQty() {
+ super(863);
+ }
+
+ public OrderCapacityQty(java.math.BigDecimal data) {
+ super(863, data);
+ }
+
+ public OrderCapacityQty(double data) {
+ super(863, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderID.java
new file mode 100644
index 000000000..ccde094ad
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrderID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 37;
+
+ public OrderID() {
+ super(37);
+ }
+
+ public OrderID(String data) {
+ super(37, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderInputDevice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderInputDevice.java
new file mode 100644
index 000000000..d93b87b6f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderInputDevice.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrderInputDevice extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 821;
+
+ public OrderInputDevice() {
+ super(821);
+ }
+
+ public OrderInputDevice(String data) {
+ super(821, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderPercent.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderPercent.java
new file mode 100644
index 000000000..695df3640
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderPercent.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class OrderPercent extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 516;
+
+ public OrderPercent() {
+ super(516);
+ }
+
+ public OrderPercent(double data) {
+ super(516, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderQty.java
new file mode 100644
index 000000000..82c564fd5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 38;
+
+ public OrderQty() {
+ super(38);
+ }
+
+ public OrderQty(java.math.BigDecimal data) {
+ super(38, data);
+ }
+
+ public OrderQty(double data) {
+ super(38, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderQty2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderQty2.java
new file mode 100644
index 000000000..d162eb2b7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderQty2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OrderQty2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 192;
+
+ public OrderQty2() {
+ super(192);
+ }
+
+ public OrderQty2(java.math.BigDecimal data) {
+ super(192, data);
+ }
+
+ public OrderQty2(double data) {
+ super(192, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderRestrictions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderRestrictions.java
new file mode 100644
index 000000000..36ecc3335
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrderRestrictions.java
@@ -0,0 +1,48 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrderRestrictions extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 529;
+ public static final String PROGRAM_TRADE = "1";
+ public static final String INDEX_ARBITRAGE = "2";
+ public static final String NON_INDEX_ARBITRAGE = "3";
+ public static final String COMPETING_MARKET_MAKER = "4";
+ public static final String ACTING_AS_MARKET_MAKER_OR_SPECIALIST_IN_THE_SECURITY = "5";
+ public static final String ACTING_AS_MARKET_MAKER_OR_SPECIALIST_IN_THE_UNDERLYING_SECURITY_OF_A_DERIVATIVE_SECURITY = "6";
+ public static final String FOREIGN_ENTITY = "7";
+ public static final String EXTERNAL_MARKET_PARTICIPANT = "8";
+ public static final String EXTERNAL_INTER_CONNECTED_MARKET_LINKAGE = "9";
+ public static final String RISKLESS_ARBITRAGE = "A";
+
+ public OrderRestrictions() {
+ super(529);
+ }
+
+ public OrderRestrictions(String data) {
+ super(529, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigClOrdID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigClOrdID.java
new file mode 100644
index 000000000..77180d1e4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigClOrdID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrigClOrdID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 41;
+
+ public OrigClOrdID() {
+ super(41);
+ }
+
+ public OrigClOrdID(String data) {
+ super(41, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigCrossID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigCrossID.java
new file mode 100644
index 000000000..52d7caa7d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigCrossID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrigCrossID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 551;
+
+ public OrigCrossID() {
+ super(551);
+ }
+
+ public OrigCrossID(String data) {
+ super(551, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigOrdModTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigOrdModTime.java
new file mode 100644
index 000000000..dc6e9d75b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigOrdModTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class OrigOrdModTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 586;
+
+ public OrigOrdModTime() {
+ super(586);
+ }
+
+ public OrigOrdModTime(LocalDateTime data) {
+ super(586, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigPosReqRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigPosReqRefID.java
new file mode 100644
index 000000000..36b3ea92e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigPosReqRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class OrigPosReqRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 713;
+
+ public OrigPosReqRefID() {
+ super(713);
+ }
+
+ public OrigPosReqRefID(String data) {
+ super(713, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigSendingTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigSendingTime.java
new file mode 100644
index 000000000..bb43dd1ab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigSendingTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class OrigSendingTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 122;
+
+ public OrigSendingTime() {
+ super(122);
+ }
+
+ public OrigSendingTime(LocalDateTime data) {
+ super(122, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigTime.java
new file mode 100644
index 000000000..96ed984ce
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OrigTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class OrigTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 42;
+
+ public OrigTime() {
+ super(42);
+ }
+
+ public OrigTime(LocalDateTime data) {
+ super(42, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OutMainCntryUIndex.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OutMainCntryUIndex.java
new file mode 100644
index 000000000..e3368cd1d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OutMainCntryUIndex.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class OutMainCntryUIndex extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 412;
+
+ public OutMainCntryUIndex() {
+ super(412);
+ }
+
+ public OutMainCntryUIndex(java.math.BigDecimal data) {
+ super(412, data);
+ }
+
+ public OutMainCntryUIndex(double data) {
+ super(412, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OutsideIndexPct.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OutsideIndexPct.java
new file mode 100644
index 000000000..40863e35c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OutsideIndexPct.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class OutsideIndexPct extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 407;
+
+ public OutsideIndexPct() {
+ super(407);
+ }
+
+ public OutsideIndexPct(double data) {
+ super(407, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OwnerType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OwnerType.java
new file mode 100644
index 000000000..89d695df1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OwnerType.java
@@ -0,0 +1,51 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class OwnerType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 522;
+ public static final int INDIVIDUAL_INVESTOR = 1;
+ public static final int PUBLIC_COMPANY = 2;
+ public static final int PRIVATE_COMPANY = 3;
+ public static final int INDIVIDUAL_TRUSTEE = 4;
+ public static final int COMPANY_TRUSTEE = 5;
+ public static final int PENSION_PLAN = 6;
+ public static final int CUSTODIAN_UNDER_GIFTS_TO_MINORS_ACT = 7;
+ public static final int TRUSTS = 8;
+ public static final int FIDUCIARIES = 9;
+ public static final int NETWORKING_SUB_ACCOUNT = 10;
+ public static final int NON_PROFIT_ORGANIZATION = 11;
+ public static final int CORPORATE_BODY = 12;
+ public static final int NOMINEE = 13;
+
+ public OwnerType() {
+ super(522);
+ }
+
+ public OwnerType(int data) {
+ super(522, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OwnershipType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OwnershipType.java
new file mode 100644
index 000000000..13db02fc1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/OwnershipType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class OwnershipType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 517;
+ public static final char JOINT_INVESTORS = 'J';
+ public static final char TENANTS_IN_COMMON = 'T';
+ public static final char JOINT_TRUSTEES = '2';
+
+ public OwnershipType() {
+ super(517);
+ }
+
+ public OwnershipType(char data) {
+ super(517, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ParticipationRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ParticipationRate.java
new file mode 100644
index 000000000..34885e1cb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ParticipationRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class ParticipationRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 849;
+
+ public ParticipationRate() {
+ super(849);
+ }
+
+ public ParticipationRate(double data) {
+ super(849, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyID.java
new file mode 100644
index 000000000..490520a33
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PartyID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 448;
+
+ public PartyID() {
+ super(448);
+ }
+
+ public PartyID(String data) {
+ super(448, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyIDSource.java
new file mode 100644
index 000000000..c5b5f5987
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyIDSource.java
@@ -0,0 +1,56 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class PartyIDSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 447;
+ public static final char BIC = 'B';
+ public static final char GENERALLY_ACCEPTED_MARKET_PARTICIPANT_IDENTIFIER = 'C';
+ public static final char PROPRIETARY_CUSTOM_CODE = 'D';
+ public static final char ISO_COUNTRY_CODE = 'E';
+ public static final char SETTLEMENT_ENTITY_LOCATION = 'F';
+ public static final char MIC = 'G';
+ public static final char CSD_PARTICIPANT_MEMBER_CODE = 'H';
+ public static final char KOREAN_INVESTOR_ID = '1';
+ public static final char TAIWANESE_QUALIFIED_FOREIGN_INVESTOR_ID_QFII_FID = '2';
+ public static final char TAIWANESE_TRADING_ACCOUNT = '3';
+ public static final char MALAYSIAN_CENTRAL_DEPOSITORY_NUMBER = '4';
+ public static final char CHINESE_B_SHARE = '5';
+ public static final char UK_NATIONAL_INSURANCE_OR_PENSION_NUMBER = '6';
+ public static final char US_SOCIAL_SECURITY_NUMBER = '7';
+ public static final char US_EMPLOYER_IDENTIFICATION_NUMBER = '8';
+ public static final char AUSTRALIAN_BUSINESS_NUMBER = '9';
+ public static final char AUSTRALIAN_TAX_FILE_NUMBER = 'A';
+ public static final char DIRECTED_BROKER = 'I';
+
+ public PartyIDSource() {
+ super(447);
+ }
+
+ public PartyIDSource(char data) {
+ super(447, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyRole.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyRole.java
new file mode 100644
index 000000000..6c7d71e6f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartyRole.java
@@ -0,0 +1,75 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PartyRole extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 452;
+ public static final int EXECUTING_FIRM = 1;
+ public static final int BROKER_OF_CREDIT = 2;
+ public static final int CLIENT_ID = 3;
+ public static final int CLEARING_FIRM = 4;
+ public static final int INVESTOR_ID = 5;
+ public static final int INTRODUCING_FIRM = 6;
+ public static final int ENTERING_FIRM = 7;
+ public static final int LOCATE_LENDING_FIRM = 8;
+ public static final int FUND_MANAGER_CLIENT_ID = 9;
+ public static final int SETTLEMENT_LOCATION = 10;
+ public static final int ORDER_ORIGINATION_TRADER = 11;
+ public static final int EXECUTING_TRADER = 12;
+ public static final int ORDER_ORIGINATION_FIRM = 13;
+ public static final int GIVEUP_CLEARING_FIRM = 14;
+ public static final int CORRESPONDANT_CLEARING_FIRM = 15;
+ public static final int EXECUTING_SYSTEM = 16;
+ public static final int CONTRA_FIRM = 17;
+ public static final int CONTRA_CLEARING_FIRM = 18;
+ public static final int SPONSORING_FIRM = 19;
+ public static final int UNDERLYING_CONTRA_FIRM = 20;
+ public static final int CLEARING_ORGANIZATION = 21;
+ public static final int EXCHANGE = 22;
+ public static final int CUSTOMER_ACCOUNT = 24;
+ public static final int CORRESPONDENT_CLEARING_ORGANIZATION = 25;
+ public static final int CORRESPONDENT_BROKER = 26;
+ public static final int BUYER_SELLER = 27;
+ public static final int CUSTODIAN = 28;
+ public static final int INTERMEDIARY = 29;
+ public static final int AGENT = 30;
+ public static final int SUB_CUSTODIAN = 31;
+ public static final int BENEFICIARY = 32;
+ public static final int INTERESTED_PARTY = 33;
+ public static final int REGULATORY_BODY = 34;
+ public static final int LIQUIDITY_PROVIDER = 35;
+ public static final int ENTERING_TRADER = 36;
+ public static final int CONTRA_TRADER = 37;
+ public static final int POSITION_ACCOUNT = 38;
+
+ public PartyRole() {
+ super(452);
+ }
+
+ public PartyRole(int data) {
+ super(452, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartySubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartySubID.java
new file mode 100644
index 000000000..592beb9d1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartySubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PartySubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 523;
+
+ public PartySubID() {
+ super(523);
+ }
+
+ public PartySubID(String data) {
+ super(523, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartySubIDType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartySubIDType.java
new file mode 100644
index 000000000..c826dffad
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PartySubIDType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PartySubIDType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 803;
+
+ public PartySubIDType() {
+ super(803);
+ }
+
+ public PartySubIDType(int data) {
+ super(803, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Password.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Password.java
new file mode 100644
index 000000000..f401709bc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Password.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Password extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 554;
+
+ public Password() {
+ super(554);
+ }
+
+ public Password(String data) {
+ super(554, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentDate.java
new file mode 100644
index 000000000..f2533ef2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PaymentDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 504;
+
+ public PaymentDate() {
+ super(504);
+ }
+
+ public PaymentDate(String data) {
+ super(504, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentMethod.java
new file mode 100644
index 000000000..d16b10a53
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentMethod.java
@@ -0,0 +1,53 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PaymentMethod extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 492;
+ public static final int CREST = 1;
+ public static final int NSCC = 2;
+ public static final int EUROCLEAR = 3;
+ public static final int CLEARSTREAM = 4;
+ public static final int CHEQUE = 5;
+ public static final int TELEGRAPHIC_TRANSFER = 6;
+ public static final int FEDWIRE = 7;
+ public static final int DEBIT_CARD = 8;
+ public static final int DIRECT_DEBIT = 9;
+ public static final int DIRECT_CREDIT = 10;
+ public static final int CREDIT_CARD = 11;
+ public static final int ACH_DEBIT = 12;
+ public static final int ACH_CREDIT = 13;
+ public static final int BPAY = 14;
+ public static final int HIGH_VALUE_CLEARING_SYSTEM = 15;
+
+ public PaymentMethod() {
+ super(492);
+ }
+
+ public PaymentMethod(int data) {
+ super(492, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentRef.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentRef.java
new file mode 100644
index 000000000..c284cf05e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentRef.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PaymentRef extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 476;
+
+ public PaymentRef() {
+ super(476);
+ }
+
+ public PaymentRef(String data) {
+ super(476, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentRemitterID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentRemitterID.java
new file mode 100644
index 000000000..e7fb89e4e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PaymentRemitterID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PaymentRemitterID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 505;
+
+ public PaymentRemitterID() {
+ super(505);
+ }
+
+ public PaymentRemitterID(String data) {
+ super(505, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PctAtRisk.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PctAtRisk.java
new file mode 100644
index 000000000..7aa5c0ff9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PctAtRisk.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class PctAtRisk extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 869;
+
+ public PctAtRisk() {
+ super(869);
+ }
+
+ public PctAtRisk(double data) {
+ super(869, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegLimitType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegLimitType.java
new file mode 100644
index 000000000..a9dcf9308
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegLimitType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PegLimitType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 837;
+ public static final int OR_BETTER = 0;
+ public static final int STRICT = 1;
+ public static final int OR_WORSE = 2;
+
+ public PegLimitType() {
+ super(837);
+ }
+
+ public PegLimitType(int data) {
+ super(837, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegMoveType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegMoveType.java
new file mode 100644
index 000000000..55455bd4c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegMoveType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PegMoveType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 835;
+ public static final int FLOATING = 0;
+ public static final int FIXED = 1;
+
+ public PegMoveType() {
+ super(835);
+ }
+
+ public PegMoveType(int data) {
+ super(835, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegOffsetType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegOffsetType.java
new file mode 100644
index 000000000..04c3714de
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegOffsetType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PegOffsetType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 836;
+ public static final int PRICE = 0;
+ public static final int BASIS_POINTS = 1;
+ public static final int TICKS = 2;
+ public static final int PRICE_TIER_LEVEL = 3;
+
+ public PegOffsetType() {
+ super(836);
+ }
+
+ public PegOffsetType(int data) {
+ super(836, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegOffsetValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegOffsetValue.java
new file mode 100644
index 000000000..47a2ed1cf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegOffsetValue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class PegOffsetValue extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 211;
+
+ public PegOffsetValue() {
+ super(211);
+ }
+
+ public PegOffsetValue(double data) {
+ super(211, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegRoundDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegRoundDirection.java
new file mode 100644
index 000000000..15005e42b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegRoundDirection.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PegRoundDirection extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 838;
+ public static final int MORE_AGGRESSIVE = 1;
+ public static final int MORE_PASSIVE = 2;
+
+ public PegRoundDirection() {
+ super(838);
+ }
+
+ public PegRoundDirection(int data) {
+ super(838, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegScope.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegScope.java
new file mode 100644
index 000000000..2b0bd994f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PegScope.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PegScope extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 840;
+ public static final int LOCAL = 1;
+ public static final int NATIONAL = 2;
+ public static final int GLOBAL = 3;
+ public static final int NATIONAL_EXCLUDING_LOCAL = 4;
+
+ public PegScope() {
+ super(840);
+ }
+
+ public PegScope(int data) {
+ super(840, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PeggedPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PeggedPrice.java
new file mode 100644
index 000000000..296d4f98e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PeggedPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PeggedPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 839;
+
+ public PeggedPrice() {
+ super(839);
+ }
+
+ public PeggedPrice(java.math.BigDecimal data) {
+ super(839, data);
+ }
+
+ public PeggedPrice(double data) {
+ super(839, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Pool.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Pool.java
new file mode 100644
index 000000000..9f4f9bacf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Pool.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Pool extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 691;
+
+ public Pool() {
+ super(691);
+ }
+
+ public Pool(String data) {
+ super(691, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosAmt.java
new file mode 100644
index 000000000..cbdee40c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PosAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 708;
+
+ public PosAmt() {
+ super(708);
+ }
+
+ public PosAmt(java.math.BigDecimal data) {
+ super(708, data);
+ }
+
+ public PosAmt(double data) {
+ super(708, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosAmtType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosAmtType.java
new file mode 100644
index 000000000..8f5316c87
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosAmtType.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PosAmtType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 707;
+ public static final String FINAL_MARK_TO_MARKET_AMOUNT = "FMTM";
+ public static final String INCREMENTAL_MARK_TO_MARKET_AMOUNT = "IMTM";
+ public static final String TRADE_VARIATION_AMOUNT = "TVAR";
+ public static final String START_OF_DAY_MARK_TO_MARKET_AMOUNT = "SMTM";
+ public static final String PREMIUM_AMOUNT = "PREM";
+ public static final String CASH_RESIDUAL_AMOUNT = "CRES";
+ public static final String CASH_AMOUNT = "CASH";
+ public static final String VALUE_ADJUSTED_AMOUNT = "VADJ";
+
+ public PosAmtType() {
+ super(707);
+ }
+
+ public PosAmtType(String data) {
+ super(707, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintAction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintAction.java
new file mode 100644
index 000000000..db3fb9466
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintAction.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosMaintAction extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 712;
+ public static final int NEW = 1;
+ public static final int REPLACE = 2;
+ public static final int CANCEL = 3;
+
+ public PosMaintAction() {
+ super(712);
+ }
+
+ public PosMaintAction(int data) {
+ super(712, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintResult.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintResult.java
new file mode 100644
index 000000000..804813ad7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintResult.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosMaintResult extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 723;
+ public static final int SUCCESSFUL_COMPLETION_NO_WARNINGS_OR_ERRORS = 0;
+ public static final int REJECTED = 1;
+ public static final int OTHER = 99;
+
+ public PosMaintResult() {
+ super(723);
+ }
+
+ public PosMaintResult(int data) {
+ super(723, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintRptID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintRptID.java
new file mode 100644
index 000000000..fedfb793b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintRptID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PosMaintRptID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 721;
+
+ public PosMaintRptID() {
+ super(721);
+ }
+
+ public PosMaintRptID(String data) {
+ super(721, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintRptRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintRptRefID.java
new file mode 100644
index 000000000..dc69f62b0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintRptRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PosMaintRptRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 714;
+
+ public PosMaintRptRefID() {
+ super(714);
+ }
+
+ public PosMaintRptRefID(String data) {
+ super(714, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintStatus.java
new file mode 100644
index 000000000..fcf1af12d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosMaintStatus.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosMaintStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 722;
+ public static final int ACCEPTED = 0;
+ public static final int ACCEPTED_WITH_WARNINGS = 1;
+ public static final int REJECTED = 2;
+ public static final int COMPLETED = 3;
+ public static final int COMPLETED_WITH_WARNINGS = 4;
+
+ public PosMaintStatus() {
+ super(722);
+ }
+
+ public PosMaintStatus(int data) {
+ super(722, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosQtyStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosQtyStatus.java
new file mode 100644
index 000000000..599c0bb31
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosQtyStatus.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosQtyStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 706;
+ public static final int SUBMITTED = 0;
+ public static final int ACCEPTED = 1;
+ public static final int REJECTED = 2;
+
+ public PosQtyStatus() {
+ super(706);
+ }
+
+ public PosQtyStatus(int data) {
+ super(706, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqID.java
new file mode 100644
index 000000000..82d2c79f3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PosReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 710;
+
+ public PosReqID() {
+ super(710);
+ }
+
+ public PosReqID(String data) {
+ super(710, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqResult.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqResult.java
new file mode 100644
index 000000000..1aa86c679
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqResult.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosReqResult extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 728;
+ public static final int VALID_REQUEST = 0;
+ public static final int INVALID_OR_UNSUPPORTED_REQUEST = 1;
+ public static final int NO_POSITIONS_FOUND_THAT_MATCH_CRITERIA = 2;
+ public static final int NOT_AUTHORIZED_TO_REQUEST_POSITIONS = 3;
+ public static final int REQUEST_FOR_POSITION_NOT_SUPPORTED = 4;
+ public static final int OTHER = 99;
+
+ public PosReqResult() {
+ super(728);
+ }
+
+ public PosReqResult(int data) {
+ super(728, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqStatus.java
new file mode 100644
index 000000000..732a822d9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqStatus.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosReqStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 729;
+ public static final int COMPLETED = 0;
+ public static final int COMPLETED_WITH_WARNINGS = 1;
+ public static final int REJECTED = 2;
+
+ public PosReqStatus() {
+ super(729);
+ }
+
+ public PosReqStatus(int data) {
+ super(729, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqType.java
new file mode 100644
index 000000000..8f49fec35
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosReqType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosReqType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 724;
+ public static final int POSITIONS = 0;
+ public static final int TRADES = 1;
+ public static final int EXERCISES = 2;
+ public static final int ASSIGNMENTS = 3;
+
+ public PosReqType() {
+ super(724);
+ }
+
+ public PosReqType(int data) {
+ super(724, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosTransType.java
new file mode 100644
index 000000000..cc42e6467
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosTransType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PosTransType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 709;
+ public static final int EXERCISE = 1;
+ public static final int DO_NOT_EXERCISE = 2;
+ public static final int POSITION_ADJUSTMENT = 3;
+ public static final int POSITION_CHANGE_SUBMISSION_MARGIN_DISPOSITION = 4;
+ public static final int PLEDGE = 5;
+
+ public PosTransType() {
+ super(709);
+ }
+
+ public PosTransType(int data) {
+ super(709, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosType.java
new file mode 100644
index 000000000..e8065a52f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PosType.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class PosType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 703;
+ public static final String TRANSACTION_QUANTITY = "TQ";
+ public static final String INTRA_SPREAD_QTY = "IAS";
+ public static final String INTER_SPREAD_QTY = "IES";
+ public static final String END_OF_DAY_QTY = "FIN";
+ public static final String START_OF_DAY_QTY = "SOD";
+ public static final String OPTION_EXERCISE_QTY = "EX";
+ public static final String OPTION_ASSIGNMENT = "AS";
+ public static final String TRANSACTION_FROM_EXERCISE = "TX";
+ public static final String TRANSACTION_FROM_ASSIGNMENT = "TA";
+ public static final String PIT_TRADE_QTY = "PIT";
+ public static final String TRANSFER_TRADE_QTY = "TRF";
+ public static final String ELECTRONIC_TRADE_QTY = "ETR";
+ public static final String ALLOCATION_TRADE_QTY = "ALC";
+ public static final String ADJUSTMENT_QTY = "PA";
+ public static final String AS_OF_TRADE_QTY = "ASF";
+ public static final String DELIVERY_QTY = "DLV";
+ public static final String TOTAL_TRANSACTION_QTY = "TOT";
+ public static final String CROSS_MARGIN_QTY = "XM";
+ public static final String INTEGRAL_SPLIT = "SPL";
+
+ public PosType() {
+ super(703);
+ }
+
+ public PosType(String data) {
+ super(703, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PositionEffect.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PositionEffect.java
new file mode 100644
index 000000000..0dc22d8ec
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PositionEffect.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class PositionEffect extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 77;
+ public static final char OPEN = 'O';
+ public static final char CLOSE = 'C';
+ public static final char ROLLED = 'R';
+ public static final char FIFO = 'F';
+
+ public PositionEffect() {
+ super(77);
+ }
+
+ public PositionEffect(char data) {
+ super(77, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PossDupFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PossDupFlag.java
new file mode 100644
index 000000000..6804e39c1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PossDupFlag.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PossDupFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 43;
+
+ public PossDupFlag() {
+ super(43);
+ }
+
+ public PossDupFlag(boolean data) {
+ super(43, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PossResend.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PossResend.java
new file mode 100644
index 000000000..37ee14ad7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PossResend.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PossResend extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 97;
+
+ public PossResend() {
+ super(97);
+ }
+
+ public PossResend(boolean data) {
+ super(97, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PreallocMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PreallocMethod.java
new file mode 100644
index 000000000..7b0dbbda9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PreallocMethod.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class PreallocMethod extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 591;
+ public static final char PRO_RATA = '0';
+ public static final char DO_NOT_PRO_RATA = '1';
+
+ public PreallocMethod() {
+ super(591);
+ }
+
+ public PreallocMethod(char data) {
+ super(591, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PrevClosePx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PrevClosePx.java
new file mode 100644
index 000000000..3050300bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PrevClosePx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PrevClosePx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 140;
+
+ public PrevClosePx() {
+ super(140);
+ }
+
+ public PrevClosePx(java.math.BigDecimal data) {
+ super(140, data);
+ }
+
+ public PrevClosePx(double data) {
+ super(140, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PreviouslyReported.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PreviouslyReported.java
new file mode 100644
index 000000000..a51772ab1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PreviouslyReported.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PreviouslyReported extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 570;
+
+ public PreviouslyReported() {
+ super(570);
+ }
+
+ public PreviouslyReported(boolean data) {
+ super(570, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Price.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Price.java
new file mode 100644
index 000000000..28dbbd368
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Price.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Price extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 44;
+
+ public Price() {
+ super(44);
+ }
+
+ public Price(java.math.BigDecimal data) {
+ super(44, data);
+ }
+
+ public Price(double data) {
+ super(44, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Price2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Price2.java
new file mode 100644
index 000000000..3352f377f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Price2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Price2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 640;
+
+ public Price2() {
+ super(640);
+ }
+
+ public Price2(java.math.BigDecimal data) {
+ super(640, data);
+ }
+
+ public Price2(double data) {
+ super(640, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceDelta.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceDelta.java
new file mode 100644
index 000000000..a0daf53b6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceDelta.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class PriceDelta extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 811;
+
+ public PriceDelta() {
+ super(811);
+ }
+
+ public PriceDelta(double data) {
+ super(811, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceImprovement.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceImprovement.java
new file mode 100644
index 000000000..d4955b6e2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceImprovement.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PriceImprovement extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 639;
+
+ public PriceImprovement() {
+ super(639);
+ }
+
+ public PriceImprovement(java.math.BigDecimal data) {
+ super(639, data);
+ }
+
+ public PriceImprovement(double data) {
+ super(639, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceType.java
new file mode 100644
index 000000000..192493959
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriceType.java
@@ -0,0 +1,49 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 423;
+ public static final int PERCENTAGE = 1;
+ public static final int PER_UNIT = 2;
+ public static final int FIXED_AMOUNT = 3;
+ public static final int DISCOUNT = 4;
+ public static final int PREMIUM = 5;
+ public static final int SPREAD = 6;
+ public static final int TED_PRICE = 7;
+ public static final int TED_YIELD = 8;
+ public static final int YIELD = 9;
+ public static final int FIXED_CABINET_TRADE_PRICE = 10;
+ public static final int VARIABLE_CABINET_TRADE_PRICE = 11;
+
+ public PriceType() {
+ super(423);
+ }
+
+ public PriceType(int data) {
+ super(423, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorSettlPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorSettlPrice.java
new file mode 100644
index 000000000..56b2198ab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorSettlPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class PriorSettlPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 734;
+
+ public PriorSettlPrice() {
+ super(734);
+ }
+
+ public PriorSettlPrice(java.math.BigDecimal data) {
+ super(734, data);
+ }
+
+ public PriorSettlPrice(double data) {
+ super(734, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorSpreadIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorSpreadIndicator.java
new file mode 100644
index 000000000..ec295d386
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorSpreadIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PriorSpreadIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 720;
+
+ public PriorSpreadIndicator() {
+ super(720);
+ }
+
+ public PriorSpreadIndicator(boolean data) {
+ super(720, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorityIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorityIndicator.java
new file mode 100644
index 000000000..fbbd78ed2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PriorityIndicator.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PriorityIndicator extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 638;
+ public static final int PRIORITY_UNCHANGED = 0;
+ public static final int LOST_PRIORITY_AS_RESULT_OF_ORDER_CHANGE = 1;
+
+ public PriorityIndicator() {
+ super(638);
+ }
+
+ public PriorityIndicator(int data) {
+ super(638, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProcessCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProcessCode.java
new file mode 100644
index 000000000..a7f3e0071
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProcessCode.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class ProcessCode extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 81;
+ public static final char REGULAR = '0';
+ public static final char SOFT_DOLLAR = '1';
+ public static final char STEP_IN = '2';
+ public static final char STEP_OUT = '3';
+ public static final char SOFT_DOLLAR_STEP_IN = '4';
+ public static final char SOFT_DOLLAR_STEP_OUT = '5';
+ public static final char PLAN_SPONSOR = '6';
+
+ public ProcessCode() {
+ super(81);
+ }
+
+ public ProcessCode(char data) {
+ super(81, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Product.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Product.java
new file mode 100644
index 000000000..9720c657a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Product.java
@@ -0,0 +1,51 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class Product extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 460;
+ public static final int AGENCY = 1;
+ public static final int COMMODITY = 2;
+ public static final int CORPORATE = 3;
+ public static final int CURRENCY = 4;
+ public static final int EQUITY = 5;
+ public static final int GOVERNMENT = 6;
+ public static final int INDEX = 7;
+ public static final int LOAN = 8;
+ public static final int MONEYMARKET = 9;
+ public static final int MORTGAGE = 10;
+ public static final int MUNICIPAL = 11;
+ public static final int OTHER = 12;
+ public static final int FINANCING = 13;
+
+ public Product() {
+ super(460);
+ }
+
+ public Product(int data) {
+ super(460, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProgPeriodInterval.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProgPeriodInterval.java
new file mode 100644
index 000000000..fe794448e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProgPeriodInterval.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ProgPeriodInterval extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 415;
+
+ public ProgPeriodInterval() {
+ super(415);
+ }
+
+ public ProgPeriodInterval(int data) {
+ super(415, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProgRptReqs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProgRptReqs.java
new file mode 100644
index 000000000..28a401fcd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ProgRptReqs.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ProgRptReqs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 414;
+ public static final int BUYSIDE_EXPLICITLY_REQUESTS_STATUS_USING_STATUSREQUEST = 1;
+ public static final int SELLSIDE_PERIODICALLY_SENDS_STATUS_USING_LISTSTATUS = 2;
+ public static final int REAL_TIME_EXECUTION_REPORTS = 3;
+
+ public ProgRptReqs() {
+ super(414);
+ }
+
+ public ProgRptReqs(int data) {
+ super(414, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PublishTrdIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PublishTrdIndicator.java
new file mode 100644
index 000000000..9c3122f7d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PublishTrdIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class PublishTrdIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 852;
+
+ public PublishTrdIndicator() {
+ super(852);
+ }
+
+ public PublishTrdIndicator(boolean data) {
+ super(852, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PutOrCall.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PutOrCall.java
new file mode 100644
index 000000000..02c0d053b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/PutOrCall.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class PutOrCall extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 201;
+ public static final int PUT = 0;
+ public static final int CALL = 1;
+
+ public PutOrCall() {
+ super(201);
+ }
+
+ public PutOrCall(int data) {
+ super(201, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QtyType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QtyType.java
new file mode 100644
index 000000000..12ca63e0a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QtyType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QtyType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 854;
+ public static final int UNITS = 0;
+ public static final int CONTRACTS = 1;
+
+ public QtyType() {
+ super(854);
+ }
+
+ public QtyType(int data) {
+ super(854, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Quantity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Quantity.java
new file mode 100644
index 000000000..c78c14128
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Quantity.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Quantity extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 53;
+
+ public Quantity() {
+ super(53);
+ }
+
+ public Quantity(java.math.BigDecimal data) {
+ super(53, data);
+ }
+
+ public Quantity(double data) {
+ super(53, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuantityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuantityType.java
new file mode 100644
index 000000000..a4aaeb585
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuantityType.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuantityType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 465;
+ public static final int SHARES = 1;
+ public static final int BONDS = 2;
+ public static final int CURRENTFACE = 3;
+ public static final int ORIGINALFACE = 4;
+ public static final int CURRENCY = 5;
+ public static final int CONTRACTS = 6;
+ public static final int OTHER = 7;
+ public static final int PAR = 8;
+
+ public QuantityType() {
+ super(465);
+ }
+
+ public QuantityType(int data) {
+ super(465, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteCancelType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteCancelType.java
new file mode 100644
index 000000000..2d850d109
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteCancelType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteCancelType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 298;
+ public static final int CANCEL_FOR_SYMBOL = 1;
+ public static final int CANCEL_FOR_SECURITY_TYPE = 2;
+ public static final int CANCEL_FOR_UNDERLYING_SYMBOL = 3;
+ public static final int CANCEL_ALL_QUOTES = 4;
+
+ public QuoteCancelType() {
+ super(298);
+ }
+
+ public QuoteCancelType(int data) {
+ super(298, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteCondition.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteCondition.java
new file mode 100644
index 000000000..d127b88a2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteCondition.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteCondition extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 276;
+ public static final String OPEN_ACTIVE = "A";
+ public static final String CLOSED_INACTIVE = "B";
+ public static final String EXCHANGE_BEST = "C";
+ public static final String CONSOLIDATED_BEST = "D";
+ public static final String LOCKED = "E";
+ public static final String CROSSED = "F";
+ public static final String DEPTH = "G";
+ public static final String FAST_TRADING = "H";
+ public static final String NON_FIRM = "I";
+
+ public QuoteCondition() {
+ super(276);
+ }
+
+ public QuoteCondition(String data) {
+ super(276, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteEntryID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteEntryID.java
new file mode 100644
index 000000000..f1dc5f2df
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteEntryID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteEntryID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 299;
+
+ public QuoteEntryID() {
+ super(299);
+ }
+
+ public QuoteEntryID(String data) {
+ super(299, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteEntryRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteEntryRejectReason.java
new file mode 100644
index 000000000..e38e9615a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteEntryRejectReason.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteEntryRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 368;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE_CLOSED = 2;
+ public static final int QUOTE_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int UNKNOWN_QUOTE = 5;
+ public static final int DUPLICATE_QUOTE = 6;
+ public static final int INVALID_BID_ASK_SPREAD = 7;
+ public static final int INVALID_PRICE = 8;
+ public static final int NOT_AUTHORIZED_TO_QUOTE_SECURITY = 9;
+
+ public QuoteEntryRejectReason() {
+ super(368);
+ }
+
+ public QuoteEntryRejectReason(int data) {
+ super(368, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteID.java
new file mode 100644
index 000000000..0ca992cbb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 117;
+
+ public QuoteID() {
+ super(117);
+ }
+
+ public QuoteID(String data) {
+ super(117, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuotePriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuotePriceType.java
new file mode 100644
index 000000000..e1d71bf2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuotePriceType.java
@@ -0,0 +1,48 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuotePriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 692;
+ public static final int PERCENT = 1;
+ public static final int PER_SHARE = 2;
+ public static final int FIXED_AMOUNT = 3;
+ public static final int DISCOUNT = 4;
+ public static final int PREMIUM = 5;
+ public static final int BASIS_POINTS_RELATIVE_TO_BENCHMARK = 6;
+ public static final int TED_PRICE = 7;
+ public static final int TED_YIELD = 8;
+ public static final int YIELD_SPREAD = 9;
+ public static final int YIELD = 10;
+
+ public QuotePriceType() {
+ super(692);
+ }
+
+ public QuotePriceType(int data) {
+ super(692, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteQualifier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteQualifier.java
new file mode 100644
index 000000000..ba69b0d53
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteQualifier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class QuoteQualifier extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 695;
+
+ public QuoteQualifier() {
+ super(695);
+ }
+
+ public QuoteQualifier(char data) {
+ super(695, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRejectReason.java
new file mode 100644
index 000000000..f61b69dca
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRejectReason.java
@@ -0,0 +1,48 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 300;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE_CLOSED = 2;
+ public static final int QUOTE_REQUEST_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int UNKNOWN_QUOTE = 5;
+ public static final int DUPLICATE_QUOTE = 6;
+ public static final int INVALID_BID_ASK_SPREAD = 7;
+ public static final int INVALID_PRICE = 8;
+ public static final int NOT_AUTHORIZED_TO_QUOTE_SECURITY = 9;
+ public static final int OTHER = 99;
+
+ public QuoteRejectReason() {
+ super(300);
+ }
+
+ public QuoteRejectReason(int data) {
+ super(300, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteReqID.java
new file mode 100644
index 000000000..4dba2b503
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 131;
+
+ public QuoteReqID() {
+ super(131);
+ }
+
+ public QuoteReqID(String data) {
+ super(131, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRequestRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRequestRejectReason.java
new file mode 100644
index 000000000..09f0ff613
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRequestRejectReason.java
@@ -0,0 +1,49 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteRequestRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 658;
+ public static final int UNKNOWN_SYMBOL = 1;
+ public static final int EXCHANGE_CLOSED = 2;
+ public static final int QUOTE_REQUEST_EXCEEDS_LIMIT = 3;
+ public static final int TOO_LATE_TO_ENTER = 4;
+ public static final int INVALID_PRICE = 5;
+ public static final int NOT_AUTHORIZED_TO_REQUEST_QUOTE = 6;
+ public static final int NO_MATCH_FOR_INQUIRY = 7;
+ public static final int NO_MARKET_FOR_INSTRUMENT = 8;
+ public static final int NO_INVENTORY = 9;
+ public static final int PASS = 10;
+ public static final int OTHER = 99;
+
+ public QuoteRequestRejectReason() {
+ super(658);
+ }
+
+ public QuoteRequestRejectReason(int data) {
+ super(658, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRequestType.java
new file mode 100644
index 000000000..b80c63c30
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRequestType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 303;
+ public static final int MANUAL = 1;
+ public static final int AUTOMATIC = 2;
+
+ public QuoteRequestType() {
+ super(303);
+ }
+
+ public QuoteRequestType(int data) {
+ super(303, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRespID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRespID.java
new file mode 100644
index 000000000..9c5d6b45e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRespID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteRespID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 693;
+
+ public QuoteRespID() {
+ super(693);
+ }
+
+ public QuoteRespID(String data) {
+ super(693, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRespType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRespType.java
new file mode 100644
index 000000000..fc22be77e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteRespType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteRespType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 694;
+ public static final int HIT_LIFT = 1;
+ public static final int COUNTER = 2;
+ public static final int EXPIRED = 3;
+ public static final int COVER = 4;
+ public static final int DONE_AWAY = 5;
+ public static final int PASS = 6;
+
+ public QuoteRespType() {
+ super(694);
+ }
+
+ public QuoteRespType(int data) {
+ super(694, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteResponseLevel.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteResponseLevel.java
new file mode 100644
index 000000000..246bc5db5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteResponseLevel.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteResponseLevel extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 301;
+ public static final int NO_ACKNOWLEDGEMENT = 0;
+ public static final int ACKNOWLEDGE_ONLY_NEGATIVE_OR_ERRONEOUS_QUOTES = 1;
+ public static final int ACKNOWLEDGE_EACH_QUOTE_MESSAGES = 2;
+
+ public QuoteResponseLevel() {
+ super(301);
+ }
+
+ public QuoteResponseLevel(int data) {
+ super(301, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteSetID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteSetID.java
new file mode 100644
index 000000000..6e95afca6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteSetID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteSetID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 302;
+
+ public QuoteSetID() {
+ super(302);
+ }
+
+ public QuoteSetID(String data) {
+ super(302, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteSetValidUntilTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteSetValidUntilTime.java
new file mode 100644
index 000000000..fa80d7f0b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteSetValidUntilTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class QuoteSetValidUntilTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 367;
+
+ public QuoteSetValidUntilTime() {
+ super(367);
+ }
+
+ public QuoteSetValidUntilTime(LocalDateTime data) {
+ super(367, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteStatus.java
new file mode 100644
index 000000000..7151d5c13
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteStatus.java
@@ -0,0 +1,54 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 297;
+ public static final int ACCEPTED = 0;
+ public static final int CANCELED_FOR_SYMBOL = 1;
+ public static final int CANCELED_FOR_SECURITY_TYPE = 2;
+ public static final int CANCELED_FOR_UNDERLYING = 3;
+ public static final int CANCELED_ALL = 4;
+ public static final int REJECTED = 5;
+ public static final int REMOVED_FROM_MARKET = 6;
+ public static final int EXPIRED = 7;
+ public static final int QUERY = 8;
+ public static final int QUOTE_NOT_FOUND = 9;
+ public static final int PENDING = 10;
+ public static final int PASS = 11;
+ public static final int LOCKED_MARKET_WARNING = 12;
+ public static final int CROSS_MARKET_WARNING = 13;
+ public static final int CANCELED_DUE_TO_LOCK_MARKET = 14;
+ public static final int CANCELED_DUE_TO_CROSS_MARKET = 15;
+
+ public QuoteStatus() {
+ super(297);
+ }
+
+ public QuoteStatus(int data) {
+ super(297, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteStatusReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteStatusReqID.java
new file mode 100644
index 000000000..49cb96eb3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteStatusReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class QuoteStatusReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 649;
+
+ public QuoteStatusReqID() {
+ super(649);
+ }
+
+ public QuoteStatusReqID(String data) {
+ super(649, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteType.java
new file mode 100644
index 000000000..89afda010
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/QuoteType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class QuoteType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 537;
+ public static final int INDICATIVE = 0;
+ public static final int TRADEABLE = 1;
+ public static final int RESTRICTED_TRADEABLE = 2;
+ public static final int COUNTER = 3;
+
+ public QuoteType() {
+ super(537);
+ }
+
+ public QuoteType(int data) {
+ super(537, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RFQReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RFQReqID.java
new file mode 100644
index 000000000..2e4e2ed94
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RFQReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RFQReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 644;
+
+ public RFQReqID() {
+ super(644);
+ }
+
+ public RFQReqID(String data) {
+ super(644, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RawData.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RawData.java
new file mode 100644
index 000000000..121706799
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RawData.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RawData extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 96;
+
+ public RawData() {
+ super(96);
+ }
+
+ public RawData(String data) {
+ super(96, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RawDataLength.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RawDataLength.java
new file mode 100644
index 000000000..75ce4b519
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RawDataLength.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RawDataLength extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 95;
+
+ public RawDataLength() {
+ super(95);
+ }
+
+ public RawDataLength(int data) {
+ super(95, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RedemptionDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RedemptionDate.java
new file mode 100644
index 000000000..03b24c450
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RedemptionDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RedemptionDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 240;
+
+ public RedemptionDate() {
+ super(240);
+ }
+
+ public RedemptionDate(String data) {
+ super(240, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefAllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefAllocID.java
new file mode 100644
index 000000000..9505fc730
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefAllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RefAllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 72;
+
+ public RefAllocID() {
+ super(72);
+ }
+
+ public RefAllocID(String data) {
+ super(72, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefCompID.java
new file mode 100644
index 000000000..52380b314
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RefCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 930;
+
+ public RefCompID() {
+ super(930);
+ }
+
+ public RefCompID(String data) {
+ super(930, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefMsgType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefMsgType.java
new file mode 100644
index 000000000..410956a0b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefMsgType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RefMsgType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 372;
+
+ public RefMsgType() {
+ super(372);
+ }
+
+ public RefMsgType(String data) {
+ super(372, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefSeqNum.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefSeqNum.java
new file mode 100644
index 000000000..265efc023
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefSeqNum.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RefSeqNum extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 45;
+
+ public RefSeqNum() {
+ super(45);
+ }
+
+ public RefSeqNum(int data) {
+ super(45, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefSubID.java
new file mode 100644
index 000000000..b8a56f32b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RefSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 931;
+
+ public RefSubID() {
+ super(931);
+ }
+
+ public RefSubID(String data) {
+ super(931, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefTagID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefTagID.java
new file mode 100644
index 000000000..3380a7eb0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RefTagID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RefTagID extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 371;
+
+ public RefTagID() {
+ super(371);
+ }
+
+ public RefTagID(int data) {
+ super(371, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistAcctType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistAcctType.java
new file mode 100644
index 000000000..ef8ad7c02
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistAcctType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RegistAcctType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 493;
+
+ public RegistAcctType() {
+ super(493);
+ }
+
+ public RegistAcctType(String data) {
+ super(493, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistDtls.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistDtls.java
new file mode 100644
index 000000000..28df81ca4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistDtls.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RegistDtls extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 509;
+
+ public RegistDtls() {
+ super(509);
+ }
+
+ public RegistDtls(String data) {
+ super(509, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistEmail.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistEmail.java
new file mode 100644
index 000000000..8f6ba99ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistEmail.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RegistEmail extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 511;
+
+ public RegistEmail() {
+ super(511);
+ }
+
+ public RegistEmail(String data) {
+ super(511, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistID.java
new file mode 100644
index 000000000..da45f1417
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RegistID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 513;
+
+ public RegistID() {
+ super(513);
+ }
+
+ public RegistID(String data) {
+ super(513, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRefID.java
new file mode 100644
index 000000000..f750651d4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RegistRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 508;
+
+ public RegistRefID() {
+ super(508);
+ }
+
+ public RegistRefID(String data) {
+ super(508, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRejReasonCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRejReasonCode.java
new file mode 100644
index 000000000..e16df47f0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRejReasonCode.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RegistRejReasonCode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 507;
+ public static final int INVALID_UNACCEPTABLE_ACCOUNT_TYPE = 1;
+ public static final int INVALID_UNACCEPTABLE_TAX_EXEMPT_TYPE = 2;
+ public static final int INVALID_UNACCEPTABLE_OWNERSHIP_TYPE = 3;
+ public static final int INVALID_UNACCEPTABLE_NO_REG_DETLS = 4;
+ public static final int INVALID_UNACCEPTABLE_REG_SEQ_NO = 5;
+ public static final int INVALID_UNACCEPTABLE_REG_DTLS = 6;
+ public static final int INVALID_UNACCEPTABLE_MAILING_DTLS = 7;
+ public static final int INVALID_UNACCEPTABLE_MAILING_INST = 8;
+ public static final int INVALID_UNACCEPTABLE_INVESTOR_ID = 9;
+ public static final int INVALID_UNACCEPTABLE_INVESTOR_ID_SOURCE = 10;
+ public static final int INVALID_UNACCEPTABLE_DATE_OF_BIRTH = 11;
+ public static final int INVALID_UNACCEPTABLE_INVESTOR_COUNTRY_OF_RESIDENCE = 12;
+ public static final int INVALID_UNACCEPTABLE_NODISTRIBINSTNS = 13;
+ public static final int INVALID_UNACCEPTABLE_DISTRIB_PERCENTAGE = 14;
+ public static final int INVALID_UNACCEPTABLE_DISTRIB_PAYMENT_METHOD = 15;
+ public static final int INVALID_UNACCEPTABLE_CASH_DISTRIB_AGENT_ACCT_NAME = 16;
+ public static final int INVALID_UNACCEPTABLE_CASH_DISTRIB_AGENT_CODE = 17;
+ public static final int INVALID_UNACCEPTABLE_CASH_DISTRIB_AGENT_ACCT_NUM = 18;
+ public static final int OTHER = 99;
+
+ public RegistRejReasonCode() {
+ super(507);
+ }
+
+ public RegistRejReasonCode(int data) {
+ super(507, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRejReasonText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRejReasonText.java
new file mode 100644
index 000000000..46f1f6482
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistRejReasonText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RegistRejReasonText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 496;
+
+ public RegistRejReasonText() {
+ super(496);
+ }
+
+ public RegistRejReasonText(String data) {
+ super(496, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistStatus.java
new file mode 100644
index 000000000..b5648ee12
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistStatus.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class RegistStatus extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 506;
+ public static final char ACCEPTED = 'A';
+ public static final char REJECTED = 'R';
+ public static final char HELD = 'H';
+ public static final char REMINDER = 'N';
+
+ public RegistStatus() {
+ super(506);
+ }
+
+ public RegistStatus(char data) {
+ super(506, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistTransType.java
new file mode 100644
index 000000000..e214cbc6c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RegistTransType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class RegistTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 514;
+ public static final char NEW = '0';
+ public static final char REPLACE = '1';
+ public static final char CANCEL = '2';
+
+ public RegistTransType() {
+ super(514);
+ }
+
+ public RegistTransType(char data) {
+ super(514, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepoCollateralSecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepoCollateralSecurityType.java
new file mode 100644
index 000000000..287ba00b2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepoCollateralSecurityType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RepoCollateralSecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 239;
+
+ public RepoCollateralSecurityType() {
+ super(239);
+ }
+
+ public RepoCollateralSecurityType(String data) {
+ super(239, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReportToExch.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReportToExch.java
new file mode 100644
index 000000000..00d242577
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReportToExch.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ReportToExch extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 113;
+
+ public ReportToExch() {
+ super(113);
+ }
+
+ public ReportToExch(boolean data) {
+ super(113, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReportedPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReportedPx.java
new file mode 100644
index 000000000..7b29964b1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReportedPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ReportedPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 861;
+
+ public ReportedPx() {
+ super(861);
+ }
+
+ public ReportedPx(java.math.BigDecimal data) {
+ super(861, data);
+ }
+
+ public ReportedPx(double data) {
+ super(861, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepurchaseRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepurchaseRate.java
new file mode 100644
index 000000000..36419e43b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepurchaseRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class RepurchaseRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 227;
+
+ public RepurchaseRate() {
+ super(227);
+ }
+
+ public RepurchaseRate(double data) {
+ super(227, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepurchaseTerm.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepurchaseTerm.java
new file mode 100644
index 000000000..d697972ff
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RepurchaseTerm.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RepurchaseTerm extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 226;
+
+ public RepurchaseTerm() {
+ super(226);
+ }
+
+ public RepurchaseTerm(int data) {
+ super(226, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResetSeqNumFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResetSeqNumFlag.java
new file mode 100644
index 000000000..1a853464d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResetSeqNumFlag.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ResetSeqNumFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 141;
+
+ public ResetSeqNumFlag() {
+ super(141);
+ }
+
+ public ResetSeqNumFlag(boolean data) {
+ super(141, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResponseDestination.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResponseDestination.java
new file mode 100644
index 000000000..f3f96a84c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResponseDestination.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class ResponseDestination extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 726;
+
+ public ResponseDestination() {
+ super(726);
+ }
+
+ public ResponseDestination(String data) {
+ super(726, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResponseTransportType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResponseTransportType.java
new file mode 100644
index 000000000..d7dea0176
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ResponseTransportType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ResponseTransportType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 725;
+ public static final int INBAND = 0;
+ public static final int OUT_OF_BAND = 1;
+
+ public ResponseTransportType() {
+ super(725);
+ }
+
+ public ResponseTransportType(int data) {
+ super(725, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReversalIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReversalIndicator.java
new file mode 100644
index 000000000..1d702d76d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ReversalIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class ReversalIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 700;
+
+ public ReversalIndicator() {
+ super(700);
+ }
+
+ public ReversalIndicator(boolean data) {
+ super(700, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundLot.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundLot.java
new file mode 100644
index 000000000..3acf65687
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundLot.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class RoundLot extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 561;
+
+ public RoundLot() {
+ super(561);
+ }
+
+ public RoundLot(java.math.BigDecimal data) {
+ super(561, data);
+ }
+
+ public RoundLot(double data) {
+ super(561, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundingDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundingDirection.java
new file mode 100644
index 000000000..58d480a31
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundingDirection.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class RoundingDirection extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 468;
+ public static final char ROUND_TO_NEAREST = '0';
+ public static final char ROUND_DOWN = '1';
+ public static final char ROUND_UP = '2';
+
+ public RoundingDirection() {
+ super(468);
+ }
+
+ public RoundingDirection(char data) {
+ super(468, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundingModulus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundingModulus.java
new file mode 100644
index 000000000..a00f00d9d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoundingModulus.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class RoundingModulus extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 469;
+
+ public RoundingModulus() {
+ super(469);
+ }
+
+ public RoundingModulus(double data) {
+ super(469, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoutingID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoutingID.java
new file mode 100644
index 000000000..a9b1787ed
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoutingID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class RoutingID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 217;
+
+ public RoutingID() {
+ super(217);
+ }
+
+ public RoutingID(String data) {
+ super(217, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoutingType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoutingType.java
new file mode 100644
index 000000000..28cf43e42
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RoutingType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RoutingType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 216;
+ public static final int TARGET_FIRM = 1;
+ public static final int TARGET_LIST = 2;
+ public static final int BLOCK_FIRM = 3;
+ public static final int BLOCK_LIST = 4;
+
+ public RoutingType() {
+ super(216);
+ }
+
+ public RoutingType(int data) {
+ super(216, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RptSeq.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RptSeq.java
new file mode 100644
index 000000000..fcb0f13de
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/RptSeq.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class RptSeq extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 83;
+
+ public RptSeq() {
+ super(83);
+ }
+
+ public RptSeq(int data) {
+ super(83, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Scope.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Scope.java
new file mode 100644
index 000000000..46099662e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Scope.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Scope extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 546;
+ public static final String LOCAL = "1";
+ public static final String NATIONAL = "2";
+ public static final String GLOBAL = "3";
+
+ public Scope() {
+ super(546);
+ }
+
+ public Scope(String data) {
+ super(546, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryAllocID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryAllocID.java
new file mode 100644
index 000000000..fe52a678f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryAllocID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryAllocID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 793;
+
+ public SecondaryAllocID() {
+ super(793);
+ }
+
+ public SecondaryAllocID(String data) {
+ super(793, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryClOrdID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryClOrdID.java
new file mode 100644
index 000000000..1db94f3ba
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryClOrdID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryClOrdID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 526;
+
+ public SecondaryClOrdID() {
+ super(526);
+ }
+
+ public SecondaryClOrdID(String data) {
+ super(526, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryExecID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryExecID.java
new file mode 100644
index 000000000..6a3f31a37
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryExecID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryExecID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 527;
+
+ public SecondaryExecID() {
+ super(527);
+ }
+
+ public SecondaryExecID(String data) {
+ super(527, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryOrderID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryOrderID.java
new file mode 100644
index 000000000..b32b2e890
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryOrderID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryOrderID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 198;
+
+ public SecondaryOrderID() {
+ super(198);
+ }
+
+ public SecondaryOrderID(String data) {
+ super(198, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTradeReportID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTradeReportID.java
new file mode 100644
index 000000000..61e6dae65
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTradeReportID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryTradeReportID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 818;
+
+ public SecondaryTradeReportID() {
+ super(818);
+ }
+
+ public SecondaryTradeReportID(String data) {
+ super(818, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTradeReportRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTradeReportRefID.java
new file mode 100644
index 000000000..5130b053f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTradeReportRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecondaryTradeReportRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 881;
+
+ public SecondaryTradeReportRefID() {
+ super(881);
+ }
+
+ public SecondaryTradeReportRefID(String data) {
+ super(881, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTrdType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTrdType.java
new file mode 100644
index 000000000..93cb722a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecondaryTrdType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecondaryTrdType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 855;
+
+ public SecondaryTrdType() {
+ super(855);
+ }
+
+ public SecondaryTrdType(int data) {
+ super(855, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecureData.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecureData.java
new file mode 100644
index 000000000..d506b98bf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecureData.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecureData extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 91;
+
+ public SecureData() {
+ super(91);
+ }
+
+ public SecureData(String data) {
+ super(91, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecureDataLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecureDataLen.java
new file mode 100644
index 000000000..0b93e7604
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecureDataLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecureDataLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 90;
+
+ public SecureDataLen() {
+ super(90);
+ }
+
+ public SecureDataLen(int data) {
+ super(90, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityAltID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityAltID.java
new file mode 100644
index 000000000..6da8e59ef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityAltID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityAltID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 455;
+
+ public SecurityAltID() {
+ super(455);
+ }
+
+ public SecurityAltID(String data) {
+ super(455, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityAltIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityAltIDSource.java
new file mode 100644
index 000000000..5cfeb3cf3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityAltIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityAltIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 456;
+
+ public SecurityAltIDSource() {
+ super(456);
+ }
+
+ public SecurityAltIDSource(String data) {
+ super(456, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityDesc.java
new file mode 100644
index 000000000..fd6619cab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 107;
+
+ public SecurityDesc() {
+ super(107);
+ }
+
+ public SecurityDesc(String data) {
+ super(107, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityExchange.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityExchange.java
new file mode 100644
index 000000000..18cd922b6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityExchange.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityExchange extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 207;
+
+ public SecurityExchange() {
+ super(207);
+ }
+
+ public SecurityExchange(String data) {
+ super(207, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityID.java
new file mode 100644
index 000000000..db313dad4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 48;
+
+ public SecurityID() {
+ super(48);
+ }
+
+ public SecurityID(String data) {
+ super(48, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityIDSource.java
new file mode 100644
index 000000000..2164cc969
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityIDSource.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 22;
+ public static final String CUSIP = "1";
+ public static final String SEDOL = "2";
+ public static final String QUIK = "3";
+ public static final String ISIN_NUMBER = "4";
+ public static final String RIC_CODE = "5";
+ public static final String ISO_CURRENCY_CODE = "6";
+ public static final String ISO_COUNTRY_CODE = "7";
+ public static final String EXCHANGE_SYMBOL = "8";
+ public static final String CONSOLIDATED_TAPE_ASSOCIATION = "9";
+ public static final String BLOOMBERG_SYMBOL = "A";
+ public static final String WERTPAPIER = "B";
+ public static final String DUTCH = "C";
+ public static final String VALOREN = "D";
+ public static final String SICOVAM = "E";
+ public static final String BELGIAN = "F";
+ public static final String COMMON = "G";
+ public static final String CLEARING_HOUSE_CLEARING_ORGANIZATION = "H";
+ public static final String ISDA_FPML_PRODUCT_SPECIFICATION = "I";
+ public static final String OPTIONS_PRICE_REPORTING_AUTHORITY = "J";
+
+ public SecurityIDSource() {
+ super(22);
+ }
+
+ public SecurityIDSource(String data) {
+ super(22, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityListRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityListRequestType.java
new file mode 100644
index 000000000..ddcb19445
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityListRequestType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityListRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 559;
+ public static final int SYMBOL = 0;
+ public static final int SECURITYTYPE_AND_OR_CFICODE = 1;
+ public static final int PRODUCT = 2;
+ public static final int TRADINGSESSIONID = 3;
+ public static final int ALL_SECURITIES = 4;
+
+ public SecurityListRequestType() {
+ super(559);
+ }
+
+ public SecurityListRequestType(int data) {
+ super(559, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityReqID.java
new file mode 100644
index 000000000..d40d0ca45
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 320;
+
+ public SecurityReqID() {
+ super(320);
+ }
+
+ public SecurityReqID(String data) {
+ super(320, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityRequestResult.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityRequestResult.java
new file mode 100644
index 000000000..1e7f48113
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityRequestResult.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityRequestResult extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 560;
+ public static final int VALID_REQUEST = 0;
+ public static final int INVALID_OR_UNSUPPORTED_REQUEST = 1;
+ public static final int NO_INSTRUMENTS_FOUND_THAT_MATCH_SELECTION_CRITERIA = 2;
+ public static final int NOT_AUTHORIZED_TO_RETRIEVE_INSTRUMENT_DATA = 3;
+ public static final int INSTRUMENT_DATA_TEMPORARILY_UNAVAILABLE = 4;
+ public static final int REQUEST_FOR_INSTRUMENT_DATA_NOT_SUPPORTED = 5;
+
+ public SecurityRequestResult() {
+ super(560);
+ }
+
+ public SecurityRequestResult(int data) {
+ super(560, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityRequestType.java
new file mode 100644
index 000000000..6a8723219
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityRequestType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 321;
+ public static final int REQUEST_SECURITY_IDENTITY_AND_SPECIFICATIONS = 0;
+ public static final int REQUEST_SECURITY_IDENTITY_FOR_THE_SPECIFICATIONS_PROVIDED = 1;
+ public static final int REQUEST_LIST_SECURITY_TYPES = 2;
+ public static final int REQUEST_LIST_SECURITIES = 3;
+
+ public SecurityRequestType() {
+ super(321);
+ }
+
+ public SecurityRequestType(int data) {
+ super(321, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityResponseID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityResponseID.java
new file mode 100644
index 000000000..678b881ba
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityResponseID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityResponseID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 322;
+
+ public SecurityResponseID() {
+ super(322);
+ }
+
+ public SecurityResponseID(String data) {
+ super(322, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityResponseType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityResponseType.java
new file mode 100644
index 000000000..e1e247c78
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityResponseType.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityResponseType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 323;
+ public static final int ACCEPT_SECURITY_PROPOSAL_AS_IS = 1;
+ public static final int ACCEPT_SECURITY_PROPOSAL_WITH_REVISIONS_AS_INDICATED_IN_THE_MESSAGE = 2;
+ public static final int LIST_OF_SECURITY_TYPES_RETURNED_PER_REQUEST = 3;
+ public static final int LIST_OF_SECURITIES_RETURNED_PER_REQUEST = 4;
+ public static final int REJECT_SECURITY_PROPOSAL = 5;
+ public static final int CAN_NOT_MATCH_SELECTION_CRITERIA = 6;
+
+ public SecurityResponseType() {
+ super(323);
+ }
+
+ public SecurityResponseType(int data) {
+ super(323, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityStatusReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityStatusReqID.java
new file mode 100644
index 000000000..71a43f127
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityStatusReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityStatusReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 324;
+
+ public SecurityStatusReqID() {
+ super(324);
+ }
+
+ public SecurityStatusReqID(String data) {
+ super(324, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecuritySubType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecuritySubType.java
new file mode 100644
index 000000000..6f7ad4385
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecuritySubType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecuritySubType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 762;
+
+ public SecuritySubType() {
+ super(762);
+ }
+
+ public SecuritySubType(String data) {
+ super(762, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityTradingStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityTradingStatus.java
new file mode 100644
index 000000000..fbe0018cd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityTradingStatus.java
@@ -0,0 +1,61 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SecurityTradingStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 326;
+ public static final int OPENING_DELAY = 1;
+ public static final int TRADING_HALT = 2;
+ public static final int RESUME = 3;
+ public static final int NO_OPEN_NO_RESUME = 4;
+ public static final int PRICE_INDICATION = 5;
+ public static final int TRADING_RANGE_INDICATION = 6;
+ public static final int MARKET_IMBALANCE_BUY = 7;
+ public static final int MARKET_IMBALANCE_SELL = 8;
+ public static final int MARKET_ON_CLOSE_IMBALANCE_BUY = 9;
+ public static final int MARKET_ON_CLOSE_IMBALANCE_SELL = 10;
+ public static final int NOT_ASSIGNED = 11;
+ public static final int NO_MARKET_IMBALANCE = 12;
+ public static final int NO_MARKET_ON_CLOSE_IMBALANCE = 13;
+ public static final int ITS_PRE_OPENING = 14;
+ public static final int NEW_PRICE_INDICATION = 15;
+ public static final int TRADE_DISSEMINATION_TIME = 16;
+ public static final int READY_TO_TRADE_START_OF_SESSION = 17;
+ public static final int NOT_AVAILABLE_FOR_TRADING_END_OF_SESSION = 18;
+ public static final int NOT_TRADED_ON_THIS_MARKET = 19;
+ public static final int UNKNOWN_OR_INVALID = 20;
+ public static final int PRE_OPEN = 21;
+ public static final int OPENING_ROTATION = 22;
+ public static final int FAST_MARKET = 23;
+
+ public SecurityTradingStatus() {
+ super(326);
+ }
+
+ public SecurityTradingStatus(int data) {
+ super(326, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityType.java
new file mode 100644
index 000000000..1eac85e33
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SecurityType.java
@@ -0,0 +1,132 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 167;
+ public static final String WILDCARD = "?";
+ public static final String ASSET_BACKED_SECURITIES = "ABS";
+ public static final String AMENDED_AND_RESTATED = "AMENDED";
+ public static final String OTHER_ANTICIPATION_NOTES = "AN";
+ public static final String BANKERS_ACCEPTANCE = "BA";
+ public static final String BANK_NOTES = "BN";
+ public static final String BILL_OF_EXCHANGES = "BOX";
+ public static final String BRADY_BOND = "BRADY";
+ public static final String BRIDGE_LOAN = "BRIDGE";
+ public static final String BUY_SELLBACK = "BUYSELL";
+ public static final String CONVERTIBLE_BOND = "CB";
+ public static final String CERTIFICATE_OF_DEPOSIT = "CD";
+ public static final String CALL_LOANS = "CL";
+ public static final String CORP_MORTGAGE_BACKED_SECURITIES = "CMBS";
+ public static final String COLLATERALIZED_MORTGAGE_OBLIGATION = "CMO";
+ public static final String CERTIFICATE_OF_OBLIGATION = "COFO";
+ public static final String CERTIFICATE_OF_PARTICIPATION = "COFP";
+ public static final String CORPORATE_BOND = "CORP";
+ public static final String COMMERCIAL_PAPER = "CP";
+ public static final String CORPORATE_PRIVATE_PLACEMENT = "CPP";
+ public static final String COMMON_STOCK = "CS";
+ public static final String DEFAULTED = "DEFLTED";
+ public static final String DEBTOR_IN_POSSESSION = "DINP";
+ public static final String DEPOSIT_NOTES = "DN";
+ public static final String DUAL_CURRENCY = "DUAL";
+ public static final String EURO_CERTIFICATE_OF_DEPOSIT = "EUCD";
+ public static final String EURO_CORPORATE_BOND = "EUCORP";
+ public static final String EURO_COMMERCIAL_PAPER = "EUCP";
+ public static final String EURO_SOVEREIGNS = "EUSOV";
+ public static final String EURO_SUPRANATIONAL_COUPONS = "EUSUPRA";
+ public static final String FEDERAL_AGENCY_COUPON = "FAC";
+ public static final String FEDERAL_AGENCY_DISCOUNT_NOTE = "FADN";
+ public static final String FOREIGN_EXCHANGE_CONTRACT = "FOR";
+ public static final String FORWARD = "FORWARD";
+ public static final String FUTURE = "FUT";
+ public static final String GENERAL_OBLIGATION_BONDS = "GO";
+ public static final String IOETTE_MORTGAGE = "IET";
+ public static final String LETTER_OF_CREDIT = "LOFC";
+ public static final String LIQUIDITY_NOTE = "LQN";
+ public static final String MATURED = "MATURED";
+ public static final String MORTGAGE_BACKED_SECURITIES = "MBS";
+ public static final String MUTUAL_FUND = "MF";
+ public static final String MORTGAGE_INTEREST_ONLY = "MIO";
+ public static final String MULTI_LEG_INSTRUMENT = "MLEG";
+ public static final String MORTGAGE_PRINCIPAL_ONLY = "MPO";
+ public static final String MORTGAGE_PRIVATE_PLACEMENT = "MPP";
+ public static final String MISCELLANEOUS_PASS_THROUGH = "MPT";
+ public static final String MANDATORY_TENDER = "MT";
+ public static final String MEDIUM_TERM_NOTES = "MTN";
+ public static final String NO_SECURITY_TYPE = "NONE";
+ public static final String OVERNIGHT = "ONITE";
+ public static final String OPTION = "OPT";
+ public static final String PRIVATE_EXPORT_FUNDING = "PEF";
+ public static final String PFANDBRIEFE = "PFAND";
+ public static final String PROMISSORY_NOTE = "PN";
+ public static final String PREFERRED_STOCK = "PS";
+ public static final String PLAZOS_FIJOS = "PZFJ";
+ public static final String REVENUE_ANTICIPATION_NOTE = "RAN";
+ public static final String REPLACED = "REPLACD";
+ public static final String REPURCHASE = "REPO";
+ public static final String RETIRED = "RETIRED";
+ public static final String REVENUE_BONDS = "REV";
+ public static final String REVOLVER_LOAN = "RVLV";
+ public static final String REVOLVER_TERM_LOAN = "RVLVTRM";
+ public static final String SECURITIES_LOAN = "SECLOAN";
+ public static final String SECURITIES_PLEDGE = "SECPLEDGE";
+ public static final String SPECIAL_ASSESSMENT = "SPCLA";
+ public static final String SPECIAL_OBLIGATION = "SPCLO";
+ public static final String SPECIAL_TAX = "SPCLT";
+ public static final String SHORT_TERM_LOAN_NOTE = "STN";
+ public static final String STRUCTURED_NOTES = "STRUCT";
+ public static final String USD_SUPRANATIONAL_COUPONS = "SUPRA";
+ public static final String SWING_LINE_FACILITY = "SWING";
+ public static final String TAX_ANTICIPATION_NOTE = "TAN";
+ public static final String TAX_ALLOCATION = "TAXA";
+ public static final String TO_BE_ANNOUNCED = "TBA";
+ public static final String US_TREASURY_BILL = "TBILL";
+ public static final String US_TREASURY_BOND = "TBOND";
+ public static final String PRINCIPAL_STRIP_OF_A_CALLABLE_BOND_OR_NOTE = "TCAL";
+ public static final String TIME_DEPOSIT = "TD";
+ public static final String TAX_EXEMPT_COMMERCIAL_PAPER = "TECP";
+ public static final String TERM_LOAN = "TERM";
+ public static final String INTEREST_STRIP_FROM_ANY_BOND_OR_NOTE = "TINT";
+ public static final String TREASURY_INFLATION_PROTECTED_SECURITIES = "TIPS";
+ public static final String US_TREASURY_NOTE = "TNOTE";
+ public static final String PRINCIPAL_STRIP_FROM_A_NON_CALLABLE_BOND_OR_NOTE = "TPRN";
+ public static final String TAX_AND_REVENUE_ANTICIPATION_NOTE = "TRAN";
+ public static final String VARIABLE_RATE_DEMAND_NOTE = "VRDN";
+ public static final String WARRANT = "WAR";
+ public static final String WITHDRAWN = "WITHDRN";
+ public static final String EXTENDED_COMM_NOTE = "XCN";
+ public static final String INDEXED_LINKED = "XLINKD";
+ public static final String YANKEE_CORPORATE_BOND = "YANK";
+ public static final String YANKEE_CERTIFICATE_OF_DEPOSIT = "YCD";
+
+ public SecurityType() {
+ super(167);
+ }
+
+ public SecurityType(String data) {
+ super(167, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SellVolume.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SellVolume.java
new file mode 100644
index 000000000..3ea401fdd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SellVolume.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SellVolume extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 331;
+
+ public SellVolume() {
+ super(331);
+ }
+
+ public SellVolume(java.math.BigDecimal data) {
+ super(331, data);
+ }
+
+ public SellVolume(double data) {
+ super(331, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SellerDays.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SellerDays.java
new file mode 100644
index 000000000..fdedfef43
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SellerDays.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SellerDays extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 287;
+
+ public SellerDays() {
+ super(287);
+ }
+
+ public SellerDays(int data) {
+ super(287, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderCompID.java
new file mode 100644
index 000000000..edb4a297c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SenderCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 49;
+
+ public SenderCompID() {
+ super(49);
+ }
+
+ public SenderCompID(String data) {
+ super(49, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderLocationID.java
new file mode 100644
index 000000000..64fda886c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SenderLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 142;
+
+ public SenderLocationID() {
+ super(142);
+ }
+
+ public SenderLocationID(String data) {
+ super(142, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderSubID.java
new file mode 100644
index 000000000..bd19fc957
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SenderSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SenderSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 50;
+
+ public SenderSubID() {
+ super(50);
+ }
+
+ public SenderSubID(String data) {
+ super(50, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SendingTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SendingTime.java
new file mode 100644
index 000000000..ca985fddd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SendingTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class SendingTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 52;
+
+ public SendingTime() {
+ super(52);
+ }
+
+ public SendingTime(LocalDateTime data) {
+ super(52, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SessionRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SessionRejectReason.java
new file mode 100644
index 000000000..40725003c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SessionRejectReason.java
@@ -0,0 +1,57 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SessionRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 373;
+ public static final int INVALID_TAG_NUMBER = 0;
+ public static final int REQUIRED_TAG_MISSING = 1;
+ public static final int TAG_NOT_DEFINED_FOR_THIS_MESSAGE_TYPE = 2;
+ public static final int UNDEFINED_TAG = 3;
+ public static final int TAG_SPECIFIED_WITHOUT_A_VALUE = 4;
+ public static final int VALUE_IS_INCORRECT = 5;
+ public static final int INCORRECT_DATA_FORMAT_FOR_VALUE = 6;
+ public static final int DECRYPTION_PROBLEM = 7;
+ public static final int SIGNATURE_PROBLEM = 8;
+ public static final int COMPID_PROBLEM = 9;
+ public static final int SENDINGTIME_ACCURACY_PROBLEM = 10;
+ public static final int INVALID_MSGTYPE = 11;
+ public static final int XML_VALIDATION_ERROR = 12;
+ public static final int TAG_APPEARS_MORE_THAN_ONCE = 13;
+ public static final int TAG_SPECIFIED_OUT_OF_REQUIRED_ORDER = 14;
+ public static final int REPEATING_GROUP_FIELDS_OUT_OF_ORDER = 15;
+ public static final int INCORRECT_NUMINGROUP_COUNT_FOR_REPEATING_GROUP = 16;
+ public static final int NON_DATA_VALUE_INCLUDES_FIELD_DELIMITER = 17;
+ public static final int OTHER = 99;
+
+ public SessionRejectReason() {
+ super(373);
+ }
+
+ public SessionRejectReason(int data) {
+ super(373, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrAmt.java
new file mode 100644
index 000000000..2fab2a859
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SettlCurrAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 119;
+
+ public SettlCurrAmt() {
+ super(119);
+ }
+
+ public SettlCurrAmt(java.math.BigDecimal data) {
+ super(119, data);
+ }
+
+ public SettlCurrAmt(double data) {
+ super(119, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrBidFxRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrBidFxRate.java
new file mode 100644
index 000000000..0047ccd98
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrBidFxRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class SettlCurrBidFxRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 656;
+
+ public SettlCurrBidFxRate() {
+ super(656);
+ }
+
+ public SettlCurrBidFxRate(double data) {
+ super(656, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrFxRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrFxRate.java
new file mode 100644
index 000000000..f8847b74c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrFxRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class SettlCurrFxRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 155;
+
+ public SettlCurrFxRate() {
+ super(155);
+ }
+
+ public SettlCurrFxRate(double data) {
+ super(155, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrFxRateCalc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrFxRateCalc.java
new file mode 100644
index 000000000..8ba22aa3e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrFxRateCalc.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlCurrFxRateCalc extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 156;
+ public static final char MULTIPLY = 'M';
+ public static final char DIVIDE = 'D';
+
+ public SettlCurrFxRateCalc() {
+ super(156);
+ }
+
+ public SettlCurrFxRateCalc(char data) {
+ super(156, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrOfferFxRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrOfferFxRate.java
new file mode 100644
index 000000000..0e1473c34
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrOfferFxRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class SettlCurrOfferFxRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 657;
+
+ public SettlCurrOfferFxRate() {
+ super(657);
+ }
+
+ public SettlCurrOfferFxRate(double data) {
+ super(657, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrency.java
new file mode 100644
index 000000000..01f991ce8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 120;
+
+ public SettlCurrency() {
+ super(120);
+ }
+
+ public SettlCurrency(String data) {
+ super(120, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDate.java
new file mode 100644
index 000000000..b1cb3e017
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 64;
+
+ public SettlDate() {
+ super(64);
+ }
+
+ public SettlDate(String data) {
+ super(64, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDate2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDate2.java
new file mode 100644
index 000000000..bc60374b2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDate2.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlDate2 extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 193;
+
+ public SettlDate2() {
+ super(193);
+ }
+
+ public SettlDate2(String data) {
+ super(193, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDeliveryType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDeliveryType.java
new file mode 100644
index 000000000..0d8e71238
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlDeliveryType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SettlDeliveryType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 172;
+ public static final int VERSUS_PAYMENT = 0;
+ public static final int FREE = 1;
+ public static final int TRI_PARTY = 2;
+ public static final int HOLD_IN_CUSTODY = 3;
+
+ public SettlDeliveryType() {
+ super(172);
+ }
+
+ public SettlDeliveryType(int data) {
+ super(172, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstID.java
new file mode 100644
index 000000000..151cff407
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 162;
+
+ public SettlInstID() {
+ super(162);
+ }
+
+ public SettlInstID(String data) {
+ super(162, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstMode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstMode.java
new file mode 100644
index 000000000..dfe43c197
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstMode.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlInstMode extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 160;
+ public static final char DEFAULT = '0';
+ public static final char STANDING_INSTRUCTIONS_PROVIDED = '1';
+ public static final char SPECIFIC_ORDER_FOR_A_SINGLE_ACCOUNT = '4';
+ public static final char REQUEST_REJECT = '5';
+
+ public SettlInstMode() {
+ super(160);
+ }
+
+ public SettlInstMode(char data) {
+ super(160, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstMsgID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstMsgID.java
new file mode 100644
index 000000000..2ea0e9e94
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstMsgID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstMsgID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 777;
+
+ public SettlInstMsgID() {
+ super(777);
+ }
+
+ public SettlInstMsgID(String data) {
+ super(777, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstRefID.java
new file mode 100644
index 000000000..cdfe132fa
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 214;
+
+ public SettlInstRefID() {
+ super(214);
+ }
+
+ public SettlInstRefID(String data) {
+ super(214, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstReqID.java
new file mode 100644
index 000000000..1feef4fc0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlInstReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 791;
+
+ public SettlInstReqID() {
+ super(791);
+ }
+
+ public SettlInstReqID(String data) {
+ super(791, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstReqRejCode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstReqRejCode.java
new file mode 100644
index 000000000..f49b90b6c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstReqRejCode.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SettlInstReqRejCode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 792;
+ public static final int UNABLE_TO_PROCESS_REQUEST = 0;
+ public static final int UNKNOWN_ACCOUNT = 1;
+ public static final int NO_MATCHING_SETTLEMENT_INSTRUCTIONS_FOUND = 2;
+ public static final int OTHER = 99;
+
+ public SettlInstReqRejCode() {
+ super(792);
+ }
+
+ public SettlInstReqRejCode(int data) {
+ super(792, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstSource.java
new file mode 100644
index 000000000..a50e902e2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstSource.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlInstSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 165;
+ public static final char BROKERS_INSTRUCTIONS = '1';
+ public static final char INSTITUTIONS_INSTRUCTIONS = '2';
+ public static final char INVESTOR = '3';
+
+ public SettlInstSource() {
+ super(165);
+ }
+
+ public SettlInstSource(char data) {
+ super(165, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstTransType.java
new file mode 100644
index 000000000..130b97041
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlInstTransType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlInstTransType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 163;
+ public static final char NEW = 'N';
+ public static final char CANCEL = 'C';
+ public static final char REPLACE = 'R';
+ public static final char RESTATE = 'T';
+
+ public SettlInstTransType() {
+ super(163);
+ }
+
+ public SettlInstTransType(char data) {
+ super(163, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyID.java
new file mode 100644
index 000000000..15db8dc33
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlPartyID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 782;
+
+ public SettlPartyID() {
+ super(782);
+ }
+
+ public SettlPartyID(String data) {
+ super(782, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyIDSource.java
new file mode 100644
index 000000000..276a6653c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlPartyIDSource extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 783;
+
+ public SettlPartyIDSource() {
+ super(783);
+ }
+
+ public SettlPartyIDSource(char data) {
+ super(783, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyRole.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyRole.java
new file mode 100644
index 000000000..bcc5e000c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartyRole.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SettlPartyRole extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 784;
+
+ public SettlPartyRole() {
+ super(784);
+ }
+
+ public SettlPartyRole(int data) {
+ super(784, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartySubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartySubID.java
new file mode 100644
index 000000000..4e439d883
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartySubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlPartySubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 785;
+
+ public SettlPartySubID() {
+ super(785);
+ }
+
+ public SettlPartySubID(String data) {
+ super(785, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartySubIDType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartySubIDType.java
new file mode 100644
index 000000000..e8fc844fd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPartySubIDType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SettlPartySubIDType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 786;
+
+ public SettlPartySubIDType() {
+ super(786);
+ }
+
+ public SettlPartySubIDType(int data) {
+ super(786, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPrice.java
new file mode 100644
index 000000000..f10e744fe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SettlPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 730;
+
+ public SettlPrice() {
+ super(730);
+ }
+
+ public SettlPrice(java.math.BigDecimal data) {
+ super(730, data);
+ }
+
+ public SettlPrice(double data) {
+ super(730, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPriceType.java
new file mode 100644
index 000000000..9157f918b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlPriceType.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SettlPriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 731;
+ public static final int FINAL = 1;
+ public static final int THEORETICAL = 2;
+
+ public SettlPriceType() {
+ super(731);
+ }
+
+ public SettlPriceType(int data) {
+ super(731, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlSessID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlSessID.java
new file mode 100644
index 000000000..83fc41a20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlSessID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlSessID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 716;
+
+ public SettlSessID() {
+ super(716);
+ }
+
+ public SettlSessID(String data) {
+ super(716, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlSessSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlSessSubID.java
new file mode 100644
index 000000000..dd5a7b36d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlSessSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SettlSessSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 717;
+
+ public SettlSessSubID() {
+ super(717);
+ }
+
+ public SettlSessSubID(String data) {
+ super(717, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlType.java
new file mode 100644
index 000000000..b637efb22
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SettlType.java
@@ -0,0 +1,48 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SettlType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 63;
+ public static final char REGULAR = '0';
+ public static final char CASH = '1';
+ public static final char NEXT_DAY = '2';
+ public static final char T_PLUS_2 = '3';
+ public static final char T_PLUS_3 = '4';
+ public static final char T_PLUS_4 = '5';
+ public static final char FUTURE = '6';
+ public static final char WHEN_AND_IF_ISSUED = '7';
+ public static final char SELLERS_OPTION = '8';
+ public static final char T_PLUS_5 = '9';
+
+ public SettlType() {
+ super(63);
+ }
+
+ public SettlType(char data) {
+ super(63, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SharedCommission.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SharedCommission.java
new file mode 100644
index 000000000..f3cb0f9d1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SharedCommission.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SharedCommission extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 858;
+
+ public SharedCommission() {
+ super(858);
+ }
+
+ public SharedCommission(java.math.BigDecimal data) {
+ super(858, data);
+ }
+
+ public SharedCommission(double data) {
+ super(858, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ShortQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ShortQty.java
new file mode 100644
index 000000000..2c9d4a0d8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ShortQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ShortQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 705;
+
+ public ShortQty() {
+ super(705);
+ }
+
+ public ShortQty(java.math.BigDecimal data) {
+ super(705, data);
+ }
+
+ public ShortQty(double data) {
+ super(705, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ShortSaleReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ShortSaleReason.java
new file mode 100644
index 000000000..5cfbeaecd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ShortSaleReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class ShortSaleReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 853;
+ public static final int DEALER_SOLD_SHORT = 0;
+ public static final int DEALER_SOLD_SHORT_EXEMPT = 1;
+ public static final int SELLING_CUSTOMER_SOLD_SHORT = 2;
+ public static final int SELLING_CUSTOMER_SOLD_SHORT_EXEMPT = 3;
+ public static final int QUALIFED_SERVICE_REPRESENTATIVE_OR_AUTOMATIC_GIVEUP_CONTRA_SIDE_SOLD_SHORT = 4;
+ public static final int QSR_OR_AGU_CONTRA_SIDE_SOLD_SHORT_EXEMPT = 5;
+
+ public ShortSaleReason() {
+ super(853);
+ }
+
+ public ShortSaleReason(int data) {
+ super(853, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Side.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Side.java
new file mode 100644
index 000000000..53c516cf5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Side.java
@@ -0,0 +1,54 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Side extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 54;
+ public static final char BUY = '1';
+ public static final char SELL = '2';
+ public static final char BUY_MINUS = '3';
+ public static final char SELL_PLUS = '4';
+ public static final char SELL_SHORT = '5';
+ public static final char SELL_SHORT_EXEMPT = '6';
+ public static final char UNDISCLOSED = '7';
+ public static final char CROSS = '8';
+ public static final char CROSS_SHORT = '9';
+ public static final char CROSS_SHORT_EXEMPT = 'A';
+ public static final char AS_DEFINED = 'B';
+ public static final char OPPOSITE = 'C';
+ public static final char SUBSCRIBE = 'D';
+ public static final char REDEEM = 'E';
+ public static final char LEND = 'F';
+ public static final char BORROW = 'G';
+
+ public Side() {
+ super(54);
+ }
+
+ public Side(char data) {
+ super(54, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideComplianceID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideComplianceID.java
new file mode 100644
index 000000000..689b0230e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideComplianceID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SideComplianceID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 659;
+
+ public SideComplianceID() {
+ super(659);
+ }
+
+ public SideComplianceID(String data) {
+ super(659, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideMultiLegReportingType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideMultiLegReportingType.java
new file mode 100644
index 000000000..efa70d447
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideMultiLegReportingType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SideMultiLegReportingType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 752;
+ public static final int SINGLE_SECURITY = 1;
+ public static final int INDIVIDUAL_LEG_OF_A_MULTI_LEG_SECURITY = 2;
+ public static final int MULTI_LEG_SECURITY = 3;
+
+ public SideMultiLegReportingType() {
+ super(752);
+ }
+
+ public SideMultiLegReportingType(int data) {
+ super(752, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValue1.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValue1.java
new file mode 100644
index 000000000..34aec5e63
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValue1.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SideValue1 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 396;
+
+ public SideValue1() {
+ super(396);
+ }
+
+ public SideValue1(java.math.BigDecimal data) {
+ super(396, data);
+ }
+
+ public SideValue1(double data) {
+ super(396, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValue2.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValue2.java
new file mode 100644
index 000000000..786c25ecc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValue2.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class SideValue2 extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 397;
+
+ public SideValue2() {
+ super(397);
+ }
+
+ public SideValue2(java.math.BigDecimal data) {
+ super(397, data);
+ }
+
+ public SideValue2(double data) {
+ super(397, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValueInd.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValueInd.java
new file mode 100644
index 000000000..c49133127
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SideValueInd.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SideValueInd extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 401;
+ public static final int SIDEVALUE1 = 1;
+ public static final int SIDEVALUE2 = 2;
+
+ public SideValueInd() {
+ super(401);
+ }
+
+ public SideValueInd(int data) {
+ super(401, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Signature.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Signature.java
new file mode 100644
index 000000000..dbe63c808
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Signature.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Signature extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 89;
+
+ public Signature() {
+ super(89);
+ }
+
+ public Signature(String data) {
+ super(89, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SignatureLength.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SignatureLength.java
new file mode 100644
index 000000000..a6ee5c6c9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SignatureLength.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class SignatureLength extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 93;
+
+ public SignatureLength() {
+ super(93);
+ }
+
+ public SignatureLength(int data) {
+ super(93, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SolicitedFlag.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SolicitedFlag.java
new file mode 100644
index 000000000..1f53d65a5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SolicitedFlag.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class SolicitedFlag extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 377;
+
+ public SolicitedFlag() {
+ super(377);
+ }
+
+ public SolicitedFlag(boolean data) {
+ super(377, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Spread.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Spread.java
new file mode 100644
index 000000000..b5d5648d7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Spread.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class Spread extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 218;
+
+ public Spread() {
+ super(218);
+ }
+
+ public Spread(java.math.BigDecimal data) {
+ super(218, data);
+ }
+
+ public Spread(double data) {
+ super(218, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbID.java
new file mode 100644
index 000000000..f88ff7391
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StandInstDbID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 171;
+
+ public StandInstDbID() {
+ super(171);
+ }
+
+ public StandInstDbID(String data) {
+ super(171, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbName.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbName.java
new file mode 100644
index 000000000..96028afb5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbName.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StandInstDbName extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 170;
+
+ public StandInstDbName() {
+ super(170);
+ }
+
+ public StandInstDbName(String data) {
+ super(170, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbType.java
new file mode 100644
index 000000000..afc659766
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StandInstDbType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class StandInstDbType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 169;
+ public static final int OTHER = 0;
+ public static final int DTC_SID = 1;
+ public static final int THOMSON_ALERT = 2;
+ public static final int A_GLOBAL_CUSTODIAN = 3;
+ public static final int ACCOUNTNET = 4;
+
+ public StandInstDbType() {
+ super(169);
+ }
+
+ public StandInstDbType(int data) {
+ super(169, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StartCash.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StartCash.java
new file mode 100644
index 000000000..5b937ae60
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StartCash.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class StartCash extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 921;
+
+ public StartCash() {
+ super(921);
+ }
+
+ public StartCash(java.math.BigDecimal data) {
+ super(921, data);
+ }
+
+ public StartCash(double data) {
+ super(921, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StartDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StartDate.java
new file mode 100644
index 000000000..91736aaa9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StartDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StartDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 916;
+
+ public StartDate() {
+ super(916);
+ }
+
+ public StartDate(String data) {
+ super(916, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StateOrProvinceOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StateOrProvinceOfIssue.java
new file mode 100644
index 000000000..9a74c2ad5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StateOrProvinceOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StateOrProvinceOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 471;
+
+ public StateOrProvinceOfIssue() {
+ super(471);
+ }
+
+ public StateOrProvinceOfIssue(String data) {
+ super(471, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StatusText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StatusText.java
new file mode 100644
index 000000000..faaa4f2c3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StatusText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StatusText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 929;
+
+ public StatusText() {
+ super(929);
+ }
+
+ public StatusText(String data) {
+ super(929, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StatusValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StatusValue.java
new file mode 100644
index 000000000..345221499
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StatusValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class StatusValue extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 928;
+ public static final int CONNECTED = 1;
+ public static final int NOT_CONNECTED_DOWN_EXPECTED_UP = 2;
+ public static final int NOT_CONNECTED_DOWN_EXPECTED_DOWN = 3;
+ public static final int IN_PROCESS = 4;
+
+ public StatusValue() {
+ super(928);
+ }
+
+ public StatusValue(int data) {
+ super(928, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StipulationType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StipulationType.java
new file mode 100644
index 000000000..4e15b0012
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StipulationType.java
@@ -0,0 +1,97 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StipulationType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 233;
+ public static final String AMT = "AMT";
+ public static final String AUTO_REINVESTMENT_AT_OR_BETTER = "AUTOREINV";
+ public static final String BANK_QUALIFIED = "BANKQUAL";
+ public static final String BARGAIN_CONDITIONS = "BGNCON";
+ public static final String COUPON_RANGE = "COUPON";
+ public static final String ISO_CURRENCY_CODE = "CURRENCY";
+ public static final String CUSTOM_START_END_DATE = "CUSTOMDATE";
+ public static final String GEOGRAPHICS_AND_PERCENT_RANGE = "GEOG";
+ public static final String VALUATION_DISCOUNT = "HAIRCUT";
+ public static final String INSURED = "INSURED";
+ public static final String YEAR_OR_YEAR_MONTH_OF_ISSUE = "ISSUE";
+ public static final String ISSUERS_TICKER = "ISSUER";
+ public static final String ISSUE_SIZE_RANGE = "ISSUESIZE";
+ public static final String LOOKBACK_DAYS = "LOOKBACK";
+ public static final String EXPLICIT_LOT_IDENTIFIER = "LOT";
+ public static final String LOT_VARIANCE = "LOTVAR";
+ public static final String MATURITY_YEAR_AND_MONTH = "MAT";
+ public static final String MATURITY_RANGE = "MATURITY";
+ public static final String MAXIMUM_SUBSTITUTIONS = "MAXSUBS";
+ public static final String MINIMUM_QUANTITY = "MINQTY";
+ public static final String MINIMUM_INCREMENT = "MININCR";
+ public static final String MINIMUM_DENOMINATION = "MINDNOM";
+ public static final String PAYMENT_FREQUENCY_CALENDAR = "PAYFREQ";
+ public static final String NUMBER_OF_PIECES = "PIECES";
+ public static final String POOLS_MAXIMUM = "PMAX";
+ public static final String POOLS_PER_MILLION = "PPM";
+ public static final String POOLS_PER_LOT = "PPL";
+ public static final String POOLS_PER_TRADE = "PPT";
+ public static final String PRICE_RANGE = "PRICE";
+ public static final String PRICING_FREQUENCY = "PRICEFREQ";
+ public static final String PRODUCTION_YEAR = "PROD";
+ public static final String CALL_PROTECTION = "PROTECT";
+ public static final String PURPOSE = "PURPOSE";
+ public static final String BENCHMARK_PRICE_SOURCE = "PXSOURCE";
+ public static final String RATING_SOURCE_AND_RANGE = "RATING";
+ public static final String RESTRICTED = "RESTRICTED";
+ public static final String MARKET_SECTOR = "SECTOR";
+ public static final String SECURITYTYPE_INCLUDED_OR_EXCLUDED = "SECTYPE";
+ public static final String STRUCTURE = "STRUCT";
+ public static final String SUBSTITUTIONS_FREQUENCY = "SUBSFREQ";
+ public static final String SUBSTITUTIONS_LEFT = "SUBSLEFT";
+ public static final String FREEFORM_TEXT = "TEXT";
+ public static final String TRADE_VARIANCE = "TRDVAR";
+ public static final String WEIGHTED_AVERAGE_COUPON = "WAC";
+ public static final String WEIGHTED_AVERAGE_LIFE_COUPON = "WAL";
+ public static final String WEIGHTED_AVERAGE_LOAN_AGE = "WALA";
+ public static final String WEIGHTED_AVERAGE_MATURITY = "WAM";
+ public static final String WHOLE_POOL = "WHOLE";
+ public static final String YIELD_RANGE = "YIELD";
+ public static final String SINGLE_MONTHLY_MORTALITY = "SMM";
+ public static final String CONSTANT_PREPAYMENT_RATE = "CPR";
+ public static final String CONSTANT_PREPAYMENT_YIELD = "CPY";
+ public static final String CONSTANT_PREPAYMENT_PENALTY = "CPP";
+ public static final String ABSOLUTE_PREPAYMENT_SPEED = "ABS";
+ public static final String MONTHLY_PREPAYMENT_RATE = "MPR";
+ public static final String PERCENT_OF_BMA_PREPAYMENT_CURVE = "PSA";
+ public static final String PERCENT_OF_PROSPECTUS_PREPAYMENT_CURVE = "PPC";
+ public static final String PERCENT_OF_MANUFACTURED_HOUSING_PREPAYMENT_CURVE = "MHP";
+ public static final String FINAL_CPR_OF_HOME_EQUITY_PREPAYMENT_CURVE = "HEP";
+
+ public StipulationType() {
+ super(233);
+ }
+
+ public StipulationType(String data) {
+ super(233, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StipulationValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StipulationValue.java
new file mode 100644
index 000000000..8e4d71940
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StipulationValue.java
@@ -0,0 +1,52 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StipulationValue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 234;
+ public static final String SPECIAL_CUM_DIVIDEND = "CD";
+ public static final String SPECIAL_EX_DIVIDEND = "XD";
+ public static final String SPECIAL_CUM_COUPON = "CC";
+ public static final String SPECIAL_EX_COUPON = "XC";
+ public static final String SPECIAL_CUM_BONUS = "CB";
+ public static final String SPECIAL_EX_BONUS = "XB";
+ public static final String SPECIAL_CUM_RIGHTS = "CR";
+ public static final String SPECIAL_EX_RIGHTS = "XR";
+ public static final String SPECIAL_CUM_CAPITAL_REPAYMENTS = "CP";
+ public static final String SPECIAL_EX_CAPITAL_REPAYMENTS = "XP";
+ public static final String CASH_SETTLEMENT = "CS";
+ public static final String SPECIAL_PRICE = "SP";
+ public static final String REPORT_FOR_EUROPEAN_EQUITY_MARKET_SECURITIES = "TR";
+ public static final String GUARANTEED_DELIVERY = "GD";
+
+ public StipulationValue() {
+ super(234);
+ }
+
+ public StipulationValue(String data) {
+ super(234, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StopPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StopPx.java
new file mode 100644
index 000000000..e36bea5e3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StopPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class StopPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 99;
+
+ public StopPx() {
+ super(99);
+ }
+
+ public StopPx(java.math.BigDecimal data) {
+ super(99, data);
+ }
+
+ public StopPx(double data) {
+ super(99, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikeCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikeCurrency.java
new file mode 100644
index 000000000..0da58a092
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikeCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class StrikeCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 947;
+
+ public StrikeCurrency() {
+ super(947);
+ }
+
+ public StrikeCurrency(String data) {
+ super(947, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikePrice.java
new file mode 100644
index 000000000..daf8c301d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikePrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class StrikePrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 202;
+
+ public StrikePrice() {
+ super(202);
+ }
+
+ public StrikePrice(java.math.BigDecimal data) {
+ super(202, data);
+ }
+
+ public StrikePrice(double data) {
+ super(202, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikeTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikeTime.java
new file mode 100644
index 000000000..7b2fefd0f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/StrikeTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class StrikeTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 443;
+
+ public StrikeTime() {
+ super(443);
+ }
+
+ public StrikeTime(LocalDateTime data) {
+ super(443, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Subject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Subject.java
new file mode 100644
index 000000000..88054479a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Subject.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Subject extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 147;
+
+ public Subject() {
+ super(147);
+ }
+
+ public Subject(String data) {
+ super(147, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SubscriptionRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SubscriptionRequestType.java
new file mode 100644
index 000000000..f667b9760
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SubscriptionRequestType.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class SubscriptionRequestType extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 263;
+ public static final char SNAPSHOT = '0';
+ public static final char SNAPSHOT_PLUS_UPDATES = '1';
+ public static final char DISABLE_PREVIOUS_SNAPSHOT_PLUS_UPDATE_REQUEST = '2';
+
+ public SubscriptionRequestType() {
+ super(263);
+ }
+
+ public SubscriptionRequestType(char data) {
+ super(263, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Symbol.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Symbol.java
new file mode 100644
index 000000000..ecdce19db
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Symbol.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Symbol extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 55;
+
+ public Symbol() {
+ super(55);
+ }
+
+ public Symbol(String data) {
+ super(55, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SymbolSfx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SymbolSfx.java
new file mode 100644
index 000000000..89cdd7cc1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/SymbolSfx.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class SymbolSfx extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 65;
+ public static final String WHEN_ISSUED = "WI";
+ public static final String A_EUCP_WITH_LUMP_SUM_INTEREST = "CD";
+
+ public SymbolSfx() {
+ super(65);
+ }
+
+ public SymbolSfx(String data) {
+ super(65, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetCompID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetCompID.java
new file mode 100644
index 000000000..f40f4c9ec
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetCompID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetCompID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 56;
+
+ public TargetCompID() {
+ super(56);
+ }
+
+ public TargetCompID(String data) {
+ super(56, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetLocationID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetLocationID.java
new file mode 100644
index 000000000..1a6f2bebe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetLocationID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetLocationID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 143;
+
+ public TargetLocationID() {
+ super(143);
+ }
+
+ public TargetLocationID(String data) {
+ super(143, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategy.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategy.java
new file mode 100644
index 000000000..7eb1ca432
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategy.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TargetStrategy extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 847;
+
+ public TargetStrategy() {
+ super(847);
+ }
+
+ public TargetStrategy(int data) {
+ super(847, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategyParameters.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategyParameters.java
new file mode 100644
index 000000000..a129d684a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategyParameters.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetStrategyParameters extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 848;
+
+ public TargetStrategyParameters() {
+ super(848);
+ }
+
+ public TargetStrategyParameters(String data) {
+ super(848, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategyPerformance.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategyPerformance.java
new file mode 100644
index 000000000..d40d62117
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetStrategyPerformance.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class TargetStrategyPerformance extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 850;
+
+ public TargetStrategyPerformance() {
+ super(850);
+ }
+
+ public TargetStrategyPerformance(double data) {
+ super(850, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetSubID.java
new file mode 100644
index 000000000..ebec9f335
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TargetSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TargetSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 57;
+
+ public TargetSubID() {
+ super(57);
+ }
+
+ public TargetSubID(String data) {
+ super(57, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TaxAdvantageType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TaxAdvantageType.java
new file mode 100644
index 000000000..f70fdc2b2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TaxAdvantageType.java
@@ -0,0 +1,49 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TaxAdvantageType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 495;
+ public static final int NONE = 0;
+ public static final int MAXI_ISA = 1;
+ public static final int TESSA = 2;
+ public static final int MINI_CASH_ISA = 3;
+ public static final int MINI_STOCKS_AND_SHARES_ISA = 4;
+ public static final int MINI_INSURANCE_ISA = 5;
+ public static final int CURRENT_YEAR_PAYMENT = 6;
+ public static final int PRIOR_YEAR_PAYMENT = 7;
+ public static final int ASSET_TRANSFER = 8;
+ public static final int EMPLOYEE_PRIOR_YEAR = 9;
+ public static final int OTHER = 999;
+
+ public TaxAdvantageType() {
+ super(495);
+ }
+
+ public TaxAdvantageType(int data) {
+ super(495, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TerminationType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TerminationType.java
new file mode 100644
index 000000000..7cd09b8e8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TerminationType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TerminationType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 788;
+ public static final int OVERNIGHT = 1;
+ public static final int TERM = 2;
+ public static final int FLEXIBLE = 3;
+ public static final int OPEN = 4;
+
+ public TerminationType() {
+ super(788);
+ }
+
+ public TerminationType(int data) {
+ super(788, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TestMessageIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TestMessageIndicator.java
new file mode 100644
index 000000000..c2d9029a7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TestMessageIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class TestMessageIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 464;
+
+ public TestMessageIndicator() {
+ super(464);
+ }
+
+ public TestMessageIndicator(boolean data) {
+ super(464, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TestReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TestReqID.java
new file mode 100644
index 000000000..79d94ae17
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TestReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TestReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 112;
+
+ public TestReqID() {
+ super(112);
+ }
+
+ public TestReqID(String data) {
+ super(112, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Text.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Text.java
new file mode 100644
index 000000000..4c692f4ac
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Text.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Text extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 58;
+
+ public Text() {
+ super(58);
+ }
+
+ public Text(String data) {
+ super(58, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ThresholdAmount.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ThresholdAmount.java
new file mode 100644
index 000000000..96f942395
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ThresholdAmount.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ThresholdAmount extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 834;
+
+ public ThresholdAmount() {
+ super(834);
+ }
+
+ public ThresholdAmount(java.math.BigDecimal data) {
+ super(834, data);
+ }
+
+ public ThresholdAmount(double data) {
+ super(834, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TickDirection.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TickDirection.java
new file mode 100644
index 000000000..8f0381b35
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TickDirection.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class TickDirection extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 274;
+ public static final char PLUS_TICK = '0';
+ public static final char ZERO_PLUS_TICK = '1';
+ public static final char MINUS_TICK = '2';
+ public static final char ZERO_MINUS_TICK = '3';
+
+ public TickDirection() {
+ super(274);
+ }
+
+ public TickDirection(char data) {
+ super(274, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TimeBracket.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TimeBracket.java
new file mode 100644
index 000000000..c418e20dc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TimeBracket.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TimeBracket extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 943;
+
+ public TimeBracket() {
+ super(943);
+ }
+
+ public TimeBracket(String data) {
+ super(943, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TimeInForce.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TimeInForce.java
new file mode 100644
index 000000000..4edc072d2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TimeInForce.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class TimeInForce extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 59;
+ public static final char DAY = '0';
+ public static final char GOOD_TILL_CANCEL = '1';
+ public static final char AT_THE_OPENING = '2';
+ public static final char IMMEDIATE_OR_CANCEL = '3';
+ public static final char FILL_OR_KILL = '4';
+ public static final char GOOD_TILL_CROSSING = '5';
+ public static final char GOOD_TILL_DATE = '6';
+ public static final char AT_THE_CLOSE = '7';
+
+ public TimeInForce() {
+ super(59);
+ }
+
+ public TimeInForce(char data) {
+ super(59, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoAllocs.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoAllocs.java
new file mode 100644
index 000000000..40fd6a2f0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoAllocs.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoAllocs extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 892;
+
+ public TotNoAllocs() {
+ super(892);
+ }
+
+ public TotNoAllocs(int data) {
+ super(892, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoOrders.java
new file mode 100644
index 000000000..f3765294c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 68;
+
+ public TotNoOrders() {
+ super(68);
+ }
+
+ public TotNoOrders(int data) {
+ super(68, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoQuoteEntries.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoQuoteEntries.java
new file mode 100644
index 000000000..8eed592bd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoQuoteEntries.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoQuoteEntries extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 304;
+
+ public TotNoQuoteEntries() {
+ super(304);
+ }
+
+ public TotNoQuoteEntries(int data) {
+ super(304, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoRelatedSym.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoRelatedSym.java
new file mode 100644
index 000000000..243cf9f2d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoRelatedSym.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoRelatedSym extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 393;
+
+ public TotNoRelatedSym() {
+ super(393);
+ }
+
+ public TotNoRelatedSym(int data) {
+ super(393, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoSecurityTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoSecurityTypes.java
new file mode 100644
index 000000000..5257b00c3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoSecurityTypes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoSecurityTypes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 557;
+
+ public TotNoSecurityTypes() {
+ super(557);
+ }
+
+ public TotNoSecurityTypes(int data) {
+ super(557, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoStrikes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoStrikes.java
new file mode 100644
index 000000000..55cd24311
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNoStrikes.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNoStrikes extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 422;
+
+ public TotNoStrikes() {
+ super(422);
+ }
+
+ public TotNoStrikes(int data) {
+ super(422, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumAssignmentReports.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumAssignmentReports.java
new file mode 100644
index 000000000..2dcf097d6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumAssignmentReports.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNumAssignmentReports extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 832;
+
+ public TotNumAssignmentReports() {
+ super(832);
+ }
+
+ public TotNumAssignmentReports(int data) {
+ super(832, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumReports.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumReports.java
new file mode 100644
index 000000000..7cbffbc4c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumReports.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNumReports extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 911;
+
+ public TotNumReports() {
+ super(911);
+ }
+
+ public TotNumReports(int data) {
+ super(911, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumTradeReports.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumTradeReports.java
new file mode 100644
index 000000000..74b5da2fe
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotNumTradeReports.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotNumTradeReports extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 748;
+
+ public TotNumTradeReports() {
+ super(748);
+ }
+
+ public TotNumTradeReports(int data) {
+ super(748, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalAccruedInterestAmt.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalAccruedInterestAmt.java
new file mode 100644
index 000000000..4df70a922
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalAccruedInterestAmt.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class TotalAccruedInterestAmt extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 540;
+
+ public TotalAccruedInterestAmt() {
+ super(540);
+ }
+
+ public TotalAccruedInterestAmt(java.math.BigDecimal data) {
+ super(540, data);
+ }
+
+ public TotalAccruedInterestAmt(double data) {
+ super(540, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalAffectedOrders.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalAffectedOrders.java
new file mode 100644
index 000000000..0de028551
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalAffectedOrders.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotalAffectedOrders extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 533;
+
+ public TotalAffectedOrders() {
+ super(533);
+ }
+
+ public TotalAffectedOrders(int data) {
+ super(533, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalNetValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalNetValue.java
new file mode 100644
index 000000000..f9d633a16
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalNetValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class TotalNetValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 900;
+
+ public TotalNetValue() {
+ super(900);
+ }
+
+ public TotalNetValue(java.math.BigDecimal data) {
+ super(900, data);
+ }
+
+ public TotalNetValue(double data) {
+ super(900, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalNumPosReports.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalNumPosReports.java
new file mode 100644
index 000000000..c3db267ef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalNumPosReports.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TotalNumPosReports extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 727;
+
+ public TotalNumPosReports() {
+ super(727);
+ }
+
+ public TotalNumPosReports(int data) {
+ super(727, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalTakedown.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalTakedown.java
new file mode 100644
index 000000000..cb2cbf4ab
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalTakedown.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class TotalTakedown extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 237;
+
+ public TotalTakedown() {
+ super(237);
+ }
+
+ public TotalTakedown(java.math.BigDecimal data) {
+ super(237, data);
+ }
+
+ public TotalTakedown(double data) {
+ super(237, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalVolumeTraded.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalVolumeTraded.java
new file mode 100644
index 000000000..f94696fca
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TotalVolumeTraded.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class TotalVolumeTraded extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 387;
+
+ public TotalVolumeTraded() {
+ super(387);
+ }
+
+ public TotalVolumeTraded(java.math.BigDecimal data) {
+ super(387, data);
+ }
+
+ public TotalVolumeTraded(double data) {
+ super(387, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesCloseTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesCloseTime.java
new file mode 100644
index 000000000..8fc6d7cd4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesCloseTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesCloseTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 344;
+
+ public TradSesCloseTime() {
+ super(344);
+ }
+
+ public TradSesCloseTime(LocalDateTime data) {
+ super(344, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesEndTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesEndTime.java
new file mode 100644
index 000000000..60e2eb3f2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesEndTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesEndTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 345;
+
+ public TradSesEndTime() {
+ super(345);
+ }
+
+ public TradSesEndTime(LocalDateTime data) {
+ super(345, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesMethod.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesMethod.java
new file mode 100644
index 000000000..8fa0223e8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesMethod.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesMethod extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 338;
+ public static final int ELECTRONIC = 1;
+ public static final int OPEN_OUTCRY = 2;
+ public static final int TWO_PARTY = 3;
+
+ public TradSesMethod() {
+ super(338);
+ }
+
+ public TradSesMethod(int data) {
+ super(338, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesMode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesMode.java
new file mode 100644
index 000000000..597b6af93
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesMode.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesMode extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 339;
+ public static final int TESTING = 1;
+ public static final int SIMULATED = 2;
+ public static final int PRODUCTION = 3;
+
+ public TradSesMode() {
+ super(339);
+ }
+
+ public TradSesMode(int data) {
+ super(339, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesOpenTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesOpenTime.java
new file mode 100644
index 000000000..f9ba431d1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesOpenTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesOpenTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 342;
+
+ public TradSesOpenTime() {
+ super(342);
+ }
+
+ public TradSesOpenTime(LocalDateTime data) {
+ super(342, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesPreCloseTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesPreCloseTime.java
new file mode 100644
index 000000000..976c9b2b1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesPreCloseTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesPreCloseTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 343;
+
+ public TradSesPreCloseTime() {
+ super(343);
+ }
+
+ public TradSesPreCloseTime(LocalDateTime data) {
+ super(343, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesReqID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesReqID.java
new file mode 100644
index 000000000..6a73d007b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesReqID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradSesReqID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 335;
+
+ public TradSesReqID() {
+ super(335);
+ }
+
+ public TradSesReqID(String data) {
+ super(335, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStartTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStartTime.java
new file mode 100644
index 000000000..646e84863
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStartTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TradSesStartTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 341;
+
+ public TradSesStartTime() {
+ super(341);
+ }
+
+ public TradSesStartTime(LocalDateTime data) {
+ super(341, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStatus.java
new file mode 100644
index 000000000..97d404c78
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStatus.java
@@ -0,0 +1,45 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 340;
+ public static final int UNKNOWN = 0;
+ public static final int HALTED = 1;
+ public static final int OPEN = 2;
+ public static final int CLOSED = 3;
+ public static final int PRE_OPEN = 4;
+ public static final int PRE_CLOSE = 5;
+ public static final int REQUEST_REJECTED = 6;
+
+ public TradSesStatus() {
+ super(340);
+ }
+
+ public TradSesStatus(int data) {
+ super(340, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStatusRejReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStatusRejReason.java
new file mode 100644
index 000000000..df1ca5cba
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradSesStatusRejReason.java
@@ -0,0 +1,39 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradSesStatusRejReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 567;
+ public static final int UNKNOWN_OR_INVALID_TRADINGSESSIONID = 1;
+
+ public TradSesStatusRejReason() {
+ super(567);
+ }
+
+ public TradSesStatusRejReason(int data) {
+ super(567, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeAllocIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeAllocIndicator.java
new file mode 100644
index 000000000..f16639476
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeAllocIndicator.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeAllocIndicator extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 826;
+ public static final int ALLOCATION_NOT_REQUIRED = 0;
+ public static final int ALLOCATION_REQUIRED = 1;
+ public static final int USE_ALLOCATION_PROVIDED_WITH_THE_TRADE = 2;
+
+ public TradeAllocIndicator() {
+ super(826);
+ }
+
+ public TradeAllocIndicator(int data) {
+ super(826, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeCondition.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeCondition.java
new file mode 100644
index 000000000..d40bf165c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeCondition.java
@@ -0,0 +1,55 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeCondition extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 277;
+ public static final String CASH_MARKET = "A";
+ public static final String AVERAGE_PRICE_TRADE = "B";
+ public static final String CASH_TRADE = "C";
+ public static final String NEXT_DAY_MARKET = "D";
+ public static final String OPENING_REOPENING_TRADE_DETAIL = "E";
+ public static final String INTRADAY_TRADE_DETAIL = "F";
+ public static final String RULE127 = "G";
+ public static final String RULE155 = "H";
+ public static final String SOLD_LAST = "I";
+ public static final String NEXT_DAY_TRADE = "J";
+ public static final String OPENED = "K";
+ public static final String SELLER = "L";
+ public static final String SOLD = "M";
+ public static final String STOPPED_STOCK = "N";
+ public static final String IMBALANCE_MORE_BUYERS = "P";
+ public static final String IMBALANCE_MORE_SELLERS = "Q";
+ public static final String OPENING_PRICE = "R";
+
+ public TradeCondition() {
+ super(277);
+ }
+
+ public TradeCondition(String data) {
+ super(277, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeDate.java
new file mode 100644
index 000000000..3e4bc1b1a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 75;
+
+ public TradeDate() {
+ super(75);
+ }
+
+ public TradeDate(String data) {
+ super(75, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeInputDevice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeInputDevice.java
new file mode 100644
index 000000000..d86c0c73f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeInputDevice.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeInputDevice extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 579;
+
+ public TradeInputDevice() {
+ super(579);
+ }
+
+ public TradeInputDevice(String data) {
+ super(579, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeInputSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeInputSource.java
new file mode 100644
index 000000000..64d7481a8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeInputSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeInputSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 578;
+
+ public TradeInputSource() {
+ super(578);
+ }
+
+ public TradeInputSource(String data) {
+ super(578, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeLegRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeLegRefID.java
new file mode 100644
index 000000000..3aae26ad3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeLegRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeLegRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 824;
+
+ public TradeLegRefID() {
+ super(824);
+ }
+
+ public TradeLegRefID(String data) {
+ super(824, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeLinkID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeLinkID.java
new file mode 100644
index 000000000..cbe655fb9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeLinkID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeLinkID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 820;
+
+ public TradeLinkID() {
+ super(820);
+ }
+
+ public TradeLinkID(String data) {
+ super(820, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeOriginationDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeOriginationDate.java
new file mode 100644
index 000000000..55cf7ab24
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeOriginationDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeOriginationDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 229;
+
+ public TradeOriginationDate() {
+ super(229);
+ }
+
+ public TradeOriginationDate(String data) {
+ super(229, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportID.java
new file mode 100644
index 000000000..304e398f7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeReportID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 571;
+
+ public TradeReportID() {
+ super(571);
+ }
+
+ public TradeReportID(String data) {
+ super(571, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportRefID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportRefID.java
new file mode 100644
index 000000000..9429c07c7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportRefID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeReportRefID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 572;
+
+ public TradeReportRefID() {
+ super(572);
+ }
+
+ public TradeReportRefID(String data) {
+ super(572, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportRejectReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportRejectReason.java
new file mode 100644
index 000000000..37217e1e1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportRejectReason.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeReportRejectReason extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 751;
+ public static final int SUCCESSFUL = 0;
+ public static final int INVALID_PARTY_INFORMATION = 1;
+ public static final int UNKNOWN_INSTRUMENT = 2;
+ public static final int UNAUTHORIZED_TO_REPORT_TRADES = 3;
+ public static final int INVALID_TRADE_TYPE = 4;
+ public static final int OTHER = 99;
+
+ public TradeReportRejectReason() {
+ super(751);
+ }
+
+ public TradeReportRejectReason(int data) {
+ super(751, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportTransType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportTransType.java
new file mode 100644
index 000000000..88429170e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportTransType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeReportTransType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 487;
+ public static final int NEW = 0;
+ public static final int CANCEL = 1;
+ public static final int REPLACE = 2;
+ public static final int RELEASE = 3;
+ public static final int REVERSE = 4;
+
+ public TradeReportTransType() {
+ super(487);
+ }
+
+ public TradeReportTransType(int data) {
+ super(487, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportType.java
new file mode 100644
index 000000000..52b1163ba
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeReportType.java
@@ -0,0 +1,46 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeReportType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 856;
+ public static final int SUBMIT = 0;
+ public static final int ALLEGED = 1;
+ public static final int ACCEPT = 2;
+ public static final int DECLINE = 3;
+ public static final int ADDENDUM = 4;
+ public static final int NO_WAS = 5;
+ public static final int TRADE_REPORT_CANCEL = 6;
+ public static final int LOCKED_IN_TRADE_BREAK = 7;
+
+ public TradeReportType() {
+ super(856);
+ }
+
+ public TradeReportType(int data) {
+ super(856, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestID.java
new file mode 100644
index 000000000..d7736cb9b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradeRequestID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 568;
+
+ public TradeRequestID() {
+ super(568);
+ }
+
+ public TradeRequestID(String data) {
+ super(568, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestResult.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestResult.java
new file mode 100644
index 000000000..2f9e1b054
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestResult.java
@@ -0,0 +1,47 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeRequestResult extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 749;
+ public static final int SUCCESSFUL = 0;
+ public static final int INVALID_OR_UNKNOWN_INSTRUMENT = 1;
+ public static final int INVALID_TYPE_OF_TRADE_REQUESTED = 2;
+ public static final int INVALID_PARTIES = 3;
+ public static final int INVALID_TRANSPORT_TYPE_REQUESTED = 4;
+ public static final int INVALID_DESTINATION_REQUESTED = 5;
+ public static final int TRADEREQUESTTYPE_NOT_SUPPORTED = 8;
+ public static final int UNAUTHORIZED_FOR_TRADE_CAPTURE_REPORT_REQUEST = 9;
+ public static final int OTHER = 99;
+
+ public TradeRequestResult() {
+ super(749);
+ }
+
+ public TradeRequestResult(int data) {
+ super(749, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestStatus.java
new file mode 100644
index 000000000..eda2e5152
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestStatus.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeRequestStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 750;
+ public static final int ACCEPTED = 0;
+ public static final int COMPLETED = 1;
+ public static final int REJECTED = 2;
+
+ public TradeRequestStatus() {
+ super(750);
+ }
+
+ public TradeRequestStatus(int data) {
+ super(750, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestType.java
new file mode 100644
index 000000000..72edd450f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradeRequestType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TradeRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 569;
+ public static final int ALL_TRADES = 0;
+ public static final int MATCHED_TRADES_MATCHING_CRITERIA_PROVIDED_ON_REQUEST = 1;
+ public static final int UNMATCHED_TRADES_THAT_MATCH_CRITERIA = 2;
+ public static final int UNREPORTED_TRADES_THAT_MATCH_CRITERIA = 3;
+ public static final int ADVISORIES_THAT_MATCH_CRITERIA = 4;
+
+ public TradeRequestType() {
+ super(569);
+ }
+
+ public TradeRequestType(int data) {
+ super(569, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradedFlatSwitch.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradedFlatSwitch.java
new file mode 100644
index 000000000..b9c8be8b0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradedFlatSwitch.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class TradedFlatSwitch extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 258;
+
+ public TradedFlatSwitch() {
+ super(258);
+ }
+
+ public TradedFlatSwitch(boolean data) {
+ super(258, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradingSessionID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradingSessionID.java
new file mode 100644
index 000000000..fe7ec23e1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradingSessionID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradingSessionID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 336;
+
+ public TradingSessionID() {
+ super(336);
+ }
+
+ public TradingSessionID(String data) {
+ super(336, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradingSessionSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradingSessionSubID.java
new file mode 100644
index 000000000..2b656975f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TradingSessionSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TradingSessionSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 625;
+
+ public TradingSessionSubID() {
+ super(625);
+ }
+
+ public TradingSessionSubID(String data) {
+ super(625, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransBkdTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransBkdTime.java
new file mode 100644
index 000000000..807a6a7b9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransBkdTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TransBkdTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 483;
+
+ public TransBkdTime() {
+ super(483);
+ }
+
+ public TransBkdTime(LocalDateTime data) {
+ super(483, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransactTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransactTime.java
new file mode 100644
index 000000000..aa7f546d3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransactTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TransactTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 60;
+
+ public TransactTime() {
+ super(60);
+ }
+
+ public TransactTime(LocalDateTime data) {
+ super(60, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransferReason.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransferReason.java
new file mode 100644
index 000000000..6952e9c84
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TransferReason.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TransferReason extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 830;
+
+ public TransferReason() {
+ super(830);
+ }
+
+ public TransferReason(String data) {
+ super(830, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdMatchID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdMatchID.java
new file mode 100644
index 000000000..759d170f0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdMatchID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TrdMatchID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 880;
+
+ public TrdMatchID() {
+ super(880);
+ }
+
+ public TrdMatchID(String data) {
+ super(880, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestamp.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestamp.java
new file mode 100644
index 000000000..8643dfe8f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestamp.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class TrdRegTimestamp extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 769;
+
+ public TrdRegTimestamp() {
+ super(769);
+ }
+
+ public TrdRegTimestamp(LocalDateTime data) {
+ super(769, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestampOrigin.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestampOrigin.java
new file mode 100644
index 000000000..4db14f272
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestampOrigin.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class TrdRegTimestampOrigin extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 771;
+
+ public TrdRegTimestampOrigin() {
+ super(771);
+ }
+
+ public TrdRegTimestampOrigin(String data) {
+ super(771, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestampType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestampType.java
new file mode 100644
index 000000000..3d371860d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRegTimestampType.java
@@ -0,0 +1,43 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TrdRegTimestampType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 770;
+ public static final int EXECUTION_TIME = 1;
+ public static final int TIME_IN = 2;
+ public static final int TIME_OUT = 3;
+ public static final int BROKER_RECEIPT = 4;
+ public static final int BROKER_EXECUTION = 5;
+
+ public TrdRegTimestampType() {
+ super(770);
+ }
+
+ public TrdRegTimestampType(int data) {
+ super(770, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRptStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRptStatus.java
new file mode 100644
index 000000000..50a5ee9ef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdRptStatus.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TrdRptStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 939;
+ public static final int ACCEPTED = 0;
+ public static final int REJECTED = 1;
+
+ public TrdRptStatus() {
+ super(939);
+ }
+
+ public TrdRptStatus(int data) {
+ super(939, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdSubType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdSubType.java
new file mode 100644
index 000000000..f0d8333c2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdSubType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TrdSubType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 829;
+
+ public TrdSubType() {
+ super(829);
+ }
+
+ public TrdSubType(int data) {
+ super(829, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdType.java
new file mode 100644
index 000000000..1f9b5c09c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/TrdType.java
@@ -0,0 +1,49 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class TrdType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 828;
+ public static final int REGULAR_TRADE = 0;
+ public static final int BLOCK_TRADE = 1;
+ public static final int EFP = 2;
+ public static final int TRANSFER = 3;
+ public static final int LATE_TRADE = 4;
+ public static final int T_TRADE = 5;
+ public static final int WEIGHTED_AVERAGE_PRICE_TRADE = 6;
+ public static final int BUNCHED_TRADE = 7;
+ public static final int LATE_BUNCHED_TRADE = 8;
+ public static final int PRIOR_REFERENCE_PRICE_TRADE = 9;
+ public static final int AFTER_HOURS_TRADE = 10;
+
+ public TrdType() {
+ super(828);
+ }
+
+ public TrdType(int data) {
+ super(828, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/URLLink.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/URLLink.java
new file mode 100644
index 000000000..1a67e37ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/URLLink.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class URLLink extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 149;
+
+ public URLLink() {
+ super(149);
+ }
+
+ public URLLink(String data) {
+ super(149, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCFICode.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCFICode.java
new file mode 100644
index 000000000..7428434e5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCFICode.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCFICode extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 463;
+
+ public UnderlyingCFICode() {
+ super(463);
+ }
+
+ public UnderlyingCFICode(String data) {
+ super(463, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCPProgram.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCPProgram.java
new file mode 100644
index 000000000..bdd45b03d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCPProgram.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCPProgram extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 877;
+
+ public UnderlyingCPProgram() {
+ super(877);
+ }
+
+ public UnderlyingCPProgram(String data) {
+ super(877, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCPRegType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCPRegType.java
new file mode 100644
index 000000000..412366378
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCPRegType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCPRegType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 878;
+
+ public UnderlyingCPRegType() {
+ super(878);
+ }
+
+ public UnderlyingCPRegType(String data) {
+ super(878, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingContractMultiplier.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingContractMultiplier.java
new file mode 100644
index 000000000..03a8f2383
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingContractMultiplier.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class UnderlyingContractMultiplier extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 436;
+
+ public UnderlyingContractMultiplier() {
+ super(436);
+ }
+
+ public UnderlyingContractMultiplier(double data) {
+ super(436, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCountryOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCountryOfIssue.java
new file mode 100644
index 000000000..8bc2c8da1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCountryOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCountryOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 592;
+
+ public UnderlyingCountryOfIssue() {
+ super(592);
+ }
+
+ public UnderlyingCountryOfIssue(String data) {
+ super(592, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCouponPaymentDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCouponPaymentDate.java
new file mode 100644
index 000000000..5f021ed2a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCouponPaymentDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCouponPaymentDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 241;
+
+ public UnderlyingCouponPaymentDate() {
+ super(241);
+ }
+
+ public UnderlyingCouponPaymentDate(String data) {
+ super(241, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCouponRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCouponRate.java
new file mode 100644
index 000000000..710786ce4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCouponRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class UnderlyingCouponRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 435;
+
+ public UnderlyingCouponRate() {
+ super(435);
+ }
+
+ public UnderlyingCouponRate(double data) {
+ super(435, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCreditRating.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCreditRating.java
new file mode 100644
index 000000000..595c979a2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCreditRating.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCreditRating extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 256;
+
+ public UnderlyingCreditRating() {
+ super(256);
+ }
+
+ public UnderlyingCreditRating(String data) {
+ super(256, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCurrency.java
new file mode 100644
index 000000000..7a9220315
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 318;
+
+ public UnderlyingCurrency() {
+ super(318);
+ }
+
+ public UnderlyingCurrency(String data) {
+ super(318, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCurrentValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCurrentValue.java
new file mode 100644
index 000000000..f642c8597
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingCurrentValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingCurrentValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 885;
+
+ public UnderlyingCurrentValue() {
+ super(885);
+ }
+
+ public UnderlyingCurrentValue(java.math.BigDecimal data) {
+ super(885, data);
+ }
+
+ public UnderlyingCurrentValue(double data) {
+ super(885, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingDirtyPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingDirtyPrice.java
new file mode 100644
index 000000000..398cbc323
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingDirtyPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingDirtyPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 882;
+
+ public UnderlyingDirtyPrice() {
+ super(882);
+ }
+
+ public UnderlyingDirtyPrice(java.math.BigDecimal data) {
+ super(882, data);
+ }
+
+ public UnderlyingDirtyPrice(double data) {
+ super(882, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingEndPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingEndPrice.java
new file mode 100644
index 000000000..a4cc4bdb5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingEndPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingEndPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 883;
+
+ public UnderlyingEndPrice() {
+ super(883);
+ }
+
+ public UnderlyingEndPrice(java.math.BigDecimal data) {
+ super(883, data);
+ }
+
+ public UnderlyingEndPrice(double data) {
+ super(883, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingEndValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingEndValue.java
new file mode 100644
index 000000000..326cc5f37
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingEndValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingEndValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 886;
+
+ public UnderlyingEndValue() {
+ super(886);
+ }
+
+ public UnderlyingEndValue(java.math.BigDecimal data) {
+ super(886, data);
+ }
+
+ public UnderlyingEndValue(double data) {
+ super(886, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingFactor.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingFactor.java
new file mode 100644
index 000000000..03486dc2f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingFactor.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class UnderlyingFactor extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 246;
+
+ public UnderlyingFactor() {
+ super(246);
+ }
+
+ public UnderlyingFactor(double data) {
+ super(246, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingInstrRegistry.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingInstrRegistry.java
new file mode 100644
index 000000000..f6ad7ca24
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingInstrRegistry.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingInstrRegistry extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 595;
+
+ public UnderlyingInstrRegistry() {
+ super(595);
+ }
+
+ public UnderlyingInstrRegistry(String data) {
+ super(595, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingIssueDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingIssueDate.java
new file mode 100644
index 000000000..c3cb460a9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingIssueDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingIssueDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 242;
+
+ public UnderlyingIssueDate() {
+ super(242);
+ }
+
+ public UnderlyingIssueDate(String data) {
+ super(242, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingIssuer.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingIssuer.java
new file mode 100644
index 000000000..2121f916c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingIssuer.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingIssuer extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 306;
+
+ public UnderlyingIssuer() {
+ super(306);
+ }
+
+ public UnderlyingIssuer(String data) {
+ super(306, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLastPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLastPx.java
new file mode 100644
index 000000000..018ce168c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLastPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingLastPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 651;
+
+ public UnderlyingLastPx() {
+ super(651);
+ }
+
+ public UnderlyingLastPx(java.math.BigDecimal data) {
+ super(651, data);
+ }
+
+ public UnderlyingLastPx(double data) {
+ super(651, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLastQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLastQty.java
new file mode 100644
index 000000000..0415c3962
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLastQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingLastQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 652;
+
+ public UnderlyingLastQty() {
+ super(652);
+ }
+
+ public UnderlyingLastQty(java.math.BigDecimal data) {
+ super(652, data);
+ }
+
+ public UnderlyingLastQty(double data) {
+ super(652, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLocaleOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLocaleOfIssue.java
new file mode 100644
index 000000000..75666549a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingLocaleOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingLocaleOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 594;
+
+ public UnderlyingLocaleOfIssue() {
+ super(594);
+ }
+
+ public UnderlyingLocaleOfIssue(String data) {
+ super(594, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingMaturityDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingMaturityDate.java
new file mode 100644
index 000000000..441110b5c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingMaturityDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingMaturityDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 542;
+
+ public UnderlyingMaturityDate() {
+ super(542);
+ }
+
+ public UnderlyingMaturityDate(String data) {
+ super(542, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingMaturityMonthYear.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingMaturityMonthYear.java
new file mode 100644
index 000000000..fe88344bc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingMaturityMonthYear.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingMaturityMonthYear extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 313;
+
+ public UnderlyingMaturityMonthYear() {
+ super(313);
+ }
+
+ public UnderlyingMaturityMonthYear(String data) {
+ super(313, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingOptAttribute.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingOptAttribute.java
new file mode 100644
index 000000000..d0c3931dd
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingOptAttribute.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class UnderlyingOptAttribute extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 317;
+
+ public UnderlyingOptAttribute() {
+ super(317);
+ }
+
+ public UnderlyingOptAttribute(char data) {
+ super(317, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingProduct.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingProduct.java
new file mode 100644
index 000000000..04fb8df16
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingProduct.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UnderlyingProduct extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 462;
+
+ public UnderlyingProduct() {
+ super(462);
+ }
+
+ public UnderlyingProduct(int data) {
+ super(462, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingPutOrCall.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingPutOrCall.java
new file mode 100644
index 000000000..6a0be08da
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingPutOrCall.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UnderlyingPutOrCall extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 315;
+ public static final int PUT = 0;
+ public static final int CALL = 1;
+
+ public UnderlyingPutOrCall() {
+ super(315);
+ }
+
+ public UnderlyingPutOrCall(int data) {
+ super(315, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingPx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingPx.java
new file mode 100644
index 000000000..2677b47a2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingPx.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingPx extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 810;
+
+ public UnderlyingPx() {
+ super(810);
+ }
+
+ public UnderlyingPx(java.math.BigDecimal data) {
+ super(810, data);
+ }
+
+ public UnderlyingPx(double data) {
+ super(810, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingQty.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingQty.java
new file mode 100644
index 000000000..3140a3f58
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingQty.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingQty extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 879;
+
+ public UnderlyingQty() {
+ super(879);
+ }
+
+ public UnderlyingQty(java.math.BigDecimal data) {
+ super(879, data);
+ }
+
+ public UnderlyingQty(double data) {
+ super(879, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRedemptionDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRedemptionDate.java
new file mode 100644
index 000000000..c8f2329e8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRedemptionDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingRedemptionDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 247;
+
+ public UnderlyingRedemptionDate() {
+ super(247);
+ }
+
+ public UnderlyingRedemptionDate(String data) {
+ super(247, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepoCollateralSecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepoCollateralSecurityType.java
new file mode 100644
index 000000000..ca815a827
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepoCollateralSecurityType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingRepoCollateralSecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 243;
+
+ public UnderlyingRepoCollateralSecurityType() {
+ super(243);
+ }
+
+ public UnderlyingRepoCollateralSecurityType(String data) {
+ super(243, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepurchaseRate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepurchaseRate.java
new file mode 100644
index 000000000..badc17ef0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepurchaseRate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class UnderlyingRepurchaseRate extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 245;
+
+ public UnderlyingRepurchaseRate() {
+ super(245);
+ }
+
+ public UnderlyingRepurchaseRate(double data) {
+ super(245, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepurchaseTerm.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepurchaseTerm.java
new file mode 100644
index 000000000..d3f394303
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingRepurchaseTerm.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UnderlyingRepurchaseTerm extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 244;
+
+ public UnderlyingRepurchaseTerm() {
+ super(244);
+ }
+
+ public UnderlyingRepurchaseTerm(int data) {
+ super(244, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityAltID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityAltID.java
new file mode 100644
index 000000000..95c2a57ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityAltID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityAltID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 458;
+
+ public UnderlyingSecurityAltID() {
+ super(458);
+ }
+
+ public UnderlyingSecurityAltID(String data) {
+ super(458, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityAltIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityAltIDSource.java
new file mode 100644
index 000000000..a6be82b35
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityAltIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityAltIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 459;
+
+ public UnderlyingSecurityAltIDSource() {
+ super(459);
+ }
+
+ public UnderlyingSecurityAltIDSource(String data) {
+ super(459, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityDesc.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityDesc.java
new file mode 100644
index 000000000..74c80373e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityDesc.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityDesc extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 307;
+
+ public UnderlyingSecurityDesc() {
+ super(307);
+ }
+
+ public UnderlyingSecurityDesc(String data) {
+ super(307, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityExchange.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityExchange.java
new file mode 100644
index 000000000..64d0d716a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityExchange.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityExchange extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 308;
+
+ public UnderlyingSecurityExchange() {
+ super(308);
+ }
+
+ public UnderlyingSecurityExchange(String data) {
+ super(308, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityID.java
new file mode 100644
index 000000000..23a60cc1d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 309;
+
+ public UnderlyingSecurityID() {
+ super(309);
+ }
+
+ public UnderlyingSecurityID(String data) {
+ super(309, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityIDSource.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityIDSource.java
new file mode 100644
index 000000000..1478e884a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityIDSource.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityIDSource extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 305;
+
+ public UnderlyingSecurityIDSource() {
+ super(305);
+ }
+
+ public UnderlyingSecurityIDSource(String data) {
+ super(305, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecuritySubType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecuritySubType.java
new file mode 100644
index 000000000..e1c48eb73
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecuritySubType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecuritySubType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 763;
+
+ public UnderlyingSecuritySubType() {
+ super(763);
+ }
+
+ public UnderlyingSecuritySubType(String data) {
+ super(763, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityType.java
new file mode 100644
index 000000000..0c2860edf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSecurityType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSecurityType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 310;
+
+ public UnderlyingSecurityType() {
+ super(310);
+ }
+
+ public UnderlyingSecurityType(String data) {
+ super(310, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSettlPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSettlPrice.java
new file mode 100644
index 000000000..90240c2f7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSettlPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingSettlPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 732;
+
+ public UnderlyingSettlPrice() {
+ super(732);
+ }
+
+ public UnderlyingSettlPrice(java.math.BigDecimal data) {
+ super(732, data);
+ }
+
+ public UnderlyingSettlPrice(double data) {
+ super(732, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSettlPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSettlPriceType.java
new file mode 100644
index 000000000..8765b7029
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSettlPriceType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UnderlyingSettlPriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 733;
+
+ public UnderlyingSettlPriceType() {
+ super(733);
+ }
+
+ public UnderlyingSettlPriceType(int data) {
+ super(733, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStartValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStartValue.java
new file mode 100644
index 000000000..3fd2d0d7b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStartValue.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingStartValue extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 884;
+
+ public UnderlyingStartValue() {
+ super(884);
+ }
+
+ public UnderlyingStartValue(java.math.BigDecimal data) {
+ super(884, data);
+ }
+
+ public UnderlyingStartValue(double data) {
+ super(884, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStateOrProvinceOfIssue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStateOrProvinceOfIssue.java
new file mode 100644
index 000000000..403e2af11
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStateOrProvinceOfIssue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingStateOrProvinceOfIssue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 593;
+
+ public UnderlyingStateOrProvinceOfIssue() {
+ super(593);
+ }
+
+ public UnderlyingStateOrProvinceOfIssue(String data) {
+ super(593, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStipType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStipType.java
new file mode 100644
index 000000000..93f1a17d3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStipType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingStipType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 888;
+
+ public UnderlyingStipType() {
+ super(888);
+ }
+
+ public UnderlyingStipType(String data) {
+ super(888, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStipValue.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStipValue.java
new file mode 100644
index 000000000..53d2db5e3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStipValue.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingStipValue extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 889;
+
+ public UnderlyingStipValue() {
+ super(889);
+ }
+
+ public UnderlyingStipValue(String data) {
+ super(889, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStrikeCurrency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStrikeCurrency.java
new file mode 100644
index 000000000..fd2c2050e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStrikeCurrency.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingStrikeCurrency extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 941;
+
+ public UnderlyingStrikeCurrency() {
+ super(941);
+ }
+
+ public UnderlyingStrikeCurrency(String data) {
+ super(941, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStrikePrice.java
new file mode 100644
index 000000000..b9e5b70b5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingStrikePrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class UnderlyingStrikePrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 316;
+
+ public UnderlyingStrikePrice() {
+ super(316);
+ }
+
+ public UnderlyingStrikePrice(java.math.BigDecimal data) {
+ super(316, data);
+ }
+
+ public UnderlyingStrikePrice(double data) {
+ super(316, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSymbol.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSymbol.java
new file mode 100644
index 000000000..9c5999949
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSymbol.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSymbol extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 311;
+
+ public UnderlyingSymbol() {
+ super(311);
+ }
+
+ public UnderlyingSymbol(String data) {
+ super(311, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSymbolSfx.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSymbolSfx.java
new file mode 100644
index 000000000..5c007fa20
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingSymbolSfx.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingSymbolSfx extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 312;
+
+ public UnderlyingSymbolSfx() {
+ super(312);
+ }
+
+ public UnderlyingSymbolSfx(String data) {
+ super(312, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingTradingSessionID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingTradingSessionID.java
new file mode 100644
index 000000000..7aaeb3dcc
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingTradingSessionID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingTradingSessionID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 822;
+
+ public UnderlyingTradingSessionID() {
+ super(822);
+ }
+
+ public UnderlyingTradingSessionID(String data) {
+ super(822, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingTradingSessionSubID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingTradingSessionSubID.java
new file mode 100644
index 000000000..5291c5dc1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnderlyingTradingSessionSubID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UnderlyingTradingSessionSubID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 823;
+
+ public UnderlyingTradingSessionSubID() {
+ super(823);
+ }
+
+ public UnderlyingTradingSessionSubID(String data) {
+ super(823, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnsolicitedIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnsolicitedIndicator.java
new file mode 100644
index 000000000..532979b4e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UnsolicitedIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class UnsolicitedIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 325;
+
+ public UnsolicitedIndicator() {
+ super(325);
+ }
+
+ public UnsolicitedIndicator(boolean data) {
+ super(325, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Urgency.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Urgency.java
new file mode 100644
index 000000000..a1de39da8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Urgency.java
@@ -0,0 +1,41 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.CharField;
+
+public class Urgency extends CharField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 61;
+ public static final char NORMAL = '0';
+ public static final char FLASH = '1';
+ public static final char BACKGROUND = '2';
+
+ public Urgency() {
+ super(61);
+ }
+
+ public Urgency(char data) {
+ super(61, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserRequestID.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserRequestID.java
new file mode 100644
index 000000000..9c7da8e86
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserRequestID.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UserRequestID extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 923;
+
+ public UserRequestID() {
+ super(923);
+ }
+
+ public UserRequestID(String data) {
+ super(923, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserRequestType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserRequestType.java
new file mode 100644
index 000000000..e1526d5e6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserRequestType.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UserRequestType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 924;
+ public static final int LOGONUSER = 1;
+ public static final int LOGOFFUSER = 2;
+ public static final int CHANGEPASSWORDFORUSER = 3;
+ public static final int REQUEST_INDIVIDUAL_USER_STATUS = 4;
+
+ public UserRequestType() {
+ super(924);
+ }
+
+ public UserRequestType(int data) {
+ super(924, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserStatus.java
new file mode 100644
index 000000000..2dbf065d6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserStatus.java
@@ -0,0 +1,44 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class UserStatus extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 926;
+ public static final int LOGGED_IN = 1;
+ public static final int NOT_LOGGED_IN = 2;
+ public static final int USER_NOT_RECOGNISED = 3;
+ public static final int PASSWORD_INCORRECT = 4;
+ public static final int PASSWORD_CHANGED = 5;
+ public static final int OTHER = 6;
+
+ public UserStatus() {
+ super(926);
+ }
+
+ public UserStatus(int data) {
+ super(926, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserStatusText.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserStatusText.java
new file mode 100644
index 000000000..8955473f6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/UserStatusText.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class UserStatusText extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 927;
+
+ public UserStatusText() {
+ super(927);
+ }
+
+ public UserStatusText(String data) {
+ super(927, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Username.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Username.java
new file mode 100644
index 000000000..571c240b0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Username.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class Username extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 553;
+
+ public Username() {
+ super(553);
+ }
+
+ public Username(String data) {
+ super(553, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ValidUntilTime.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ValidUntilTime.java
new file mode 100644
index 000000000..2f7c8dcd2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ValidUntilTime.java
@@ -0,0 +1,40 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.UtcTimeStampField;
+
+import java.time.LocalDateTime;
+
+public class ValidUntilTime extends UtcTimeStampField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 62;
+
+ public ValidUntilTime() {
+ super(62);
+ }
+
+ public ValidUntilTime(LocalDateTime data) {
+ super(62, data, true);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ValueOfFutures.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ValueOfFutures.java
new file mode 100644
index 000000000..f40f4b729
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/ValueOfFutures.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class ValueOfFutures extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 408;
+
+ public ValueOfFutures() {
+ super(408);
+ }
+
+ public ValueOfFutures(java.math.BigDecimal data) {
+ super(408, data);
+ }
+
+ public ValueOfFutures(double data) {
+ super(408, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WaveNo.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WaveNo.java
new file mode 100644
index 000000000..e8ccfe3b0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WaveNo.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class WaveNo extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 105;
+
+ public WaveNo() {
+ super(105);
+ }
+
+ public WaveNo(String data) {
+ super(105, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WorkingIndicator.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WorkingIndicator.java
new file mode 100644
index 000000000..e56a30ffb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WorkingIndicator.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.BooleanField;
+
+public class WorkingIndicator extends BooleanField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 636;
+
+ public WorkingIndicator() {
+ super(636);
+ }
+
+ public WorkingIndicator(boolean data) {
+ super(636, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WtAverageLiquidity.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WtAverageLiquidity.java
new file mode 100644
index 000000000..954160d52
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/WtAverageLiquidity.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class WtAverageLiquidity extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 410;
+
+ public WtAverageLiquidity() {
+ super(410);
+ }
+
+ public WtAverageLiquidity(double data) {
+ super(410, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/XmlData.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/XmlData.java
new file mode 100644
index 000000000..711cbc237
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/XmlData.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class XmlData extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 213;
+
+ public XmlData() {
+ super(213);
+ }
+
+ public XmlData(String data) {
+ super(213, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/XmlDataLen.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/XmlDataLen.java
new file mode 100644
index 000000000..0f8eb3aa8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/XmlDataLen.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class XmlDataLen extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 212;
+
+ public XmlDataLen() {
+ super(212);
+ }
+
+ public XmlDataLen(int data) {
+ super(212, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Yield.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Yield.java
new file mode 100644
index 000000000..a847cabb0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/Yield.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DoubleField;
+
+public class Yield extends DoubleField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 236;
+
+ public Yield() {
+ super(236);
+ }
+
+ public Yield(double data) {
+ super(236, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldCalcDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldCalcDate.java
new file mode 100644
index 000000000..116f4285c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldCalcDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class YieldCalcDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 701;
+
+ public YieldCalcDate() {
+ super(701);
+ }
+
+ public YieldCalcDate(String data) {
+ super(701, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionDate.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionDate.java
new file mode 100644
index 000000000..f634bf78d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionDate.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class YieldRedemptionDate extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 696;
+
+ public YieldRedemptionDate() {
+ super(696);
+ }
+
+ public YieldRedemptionDate(String data) {
+ super(696, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionPrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionPrice.java
new file mode 100644
index 000000000..e32642e13
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionPrice.java
@@ -0,0 +1,42 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.DecimalField;
+
+public class YieldRedemptionPrice extends DecimalField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 697;
+
+ public YieldRedemptionPrice() {
+ super(697);
+ }
+
+ public YieldRedemptionPrice(java.math.BigDecimal data) {
+ super(697, data);
+ }
+
+ public YieldRedemptionPrice(double data) {
+ super(697, new java.math.BigDecimal(data));
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionPriceType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionPriceType.java
new file mode 100644
index 000000000..ba30c5f7b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldRedemptionPriceType.java
@@ -0,0 +1,38 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.IntField;
+
+public class YieldRedemptionPriceType extends IntField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 698;
+
+ public YieldRedemptionPriceType() {
+ super(698);
+ }
+
+ public YieldRedemptionPriceType(int data) {
+ super(698, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldType.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldType.java
new file mode 100644
index 000000000..5b709437a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/YieldType.java
@@ -0,0 +1,72 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.field;
+
+import quickfix.StringField;
+
+public class YieldType extends StringField {
+
+ static final long serialVersionUID = 20050617;
+
+ public static final int FIELD = 235;
+ public static final String AFTER_TAX_YIELD = "AFTERTAX";
+ public static final String ANNUAL_YIELD = "ANNUAL";
+ public static final String YIELD_AT_ISSUE = "ATISSUE";
+ public static final String YIELD_TO_AVERAGE_MATURITY = "AVGMATURITY";
+ public static final String BOOK_YIELD = "BOOK";
+ public static final String YIELD_TO_NEXT_CALL = "CALL";
+ public static final String YIELD_CHANGE_SINCE_CLOSE = "CHANGE";
+ public static final String CLOSING_YIELD = "CLOSE";
+ public static final String COMPOUND_YIELD = "COMPOUND";
+ public static final String CURRENT_YIELD = "CURRENT";
+ public static final String TRUE_GROSS_YIELD = "GROSS";
+ public static final String GOVERNMENT_EQUIVALENT_YIELD = "GOVTEQUIV";
+ public static final String YIELD_WITH_INFLATION_ASSUMPTION = "INFLATION";
+ public static final String INVERSE_FLOATER_BOND_YIELD = "INVERSEFLOATER";
+ public static final String MOST_RECENT_CLOSING_YIELD = "LASTCLOSE";
+ public static final String CLOSING_YIELD_MOST_RECENT_MONTH = "LASTMONTH";
+ public static final String CLOSING_YIELD_MOST_RECENT_QUARTER = "LASTQUARTER";
+ public static final String CLOSING_YIELD_MOST_RECENT_YEAR = "LASTYEAR";
+ public static final String YIELD_TO_LONGEST_AVERAGE_LIFE = "LONGAVGLIFE";
+ public static final String MARK_TO_MARKET_YIELD = "MARK";
+ public static final String YIELD_TO_MATURITY = "MATURITY";
+ public static final String YIELD_TO_NEXT_REFUND = "NEXTREFUND";
+ public static final String OPEN_AVERAGE_YIELD = "OPENAVG";
+ public static final String YIELD_TO_NEXT_PUT = "PUT";
+ public static final String PREVIOUS_CLOSE_YIELD = "PREVCLOSE";
+ public static final String PROCEEDS_YIELD = "PROCEEDS";
+ public static final String SEMI_ANNUAL_YIELD = "SEMIANNUAL";
+ public static final String YIELD_TO_SHORTEST_AVERAGE_LIFE = "SHORTAVGLIFE";
+ public static final String SIMPLE_YIELD = "SIMPLE";
+ public static final String TAX_EQUIVALENT_YIELD = "TAXEQUIV";
+ public static final String YIELD_TO_TENDER_DATE = "TENDER";
+ public static final String TRUE_YIELD = "TRUE";
+ public static final String YIELD_VALUE_OF_1_32 = "VALUE1_32";
+ public static final String YIELD_TO_WORST = "WORST";
+
+ public YieldType() {
+ super(235);
+ }
+
+ public YieldType(String data) {
+ super(235, data);
+ }
+}
\ No newline at end of file
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/package.html b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/package.html
new file mode 100644
index 000000000..b798044e0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/field/package.html
@@ -0,0 +1,4 @@
+
+
+FIX field definitions for FIX44
+
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Advertisement.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Advertisement.java
new file mode 100644
index 000000000..a071d2223
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Advertisement.java
@@ -0,0 +1,3581 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Advertisement extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "7";
+
+
+ public Advertisement() {
+
+ super(new int[] {2, 5, 3, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 555, 711, 4, 53, 854, 44, 15, 75, 60, 58, 354, 355, 149, 30, 336, 625, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Advertisement(quickfix.field.AdvId advId, quickfix.field.AdvTransType advTransType, quickfix.field.AdvSide advSide, quickfix.field.Quantity quantity) {
+ this();
+ setField(advId);
+ setField(advTransType);
+ setField(advSide);
+ setField(quantity);
+ }
+
+ public void set(quickfix.field.AdvId value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvId get(quickfix.field.AdvId value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvId getAdvId() throws FieldNotFound {
+ return get(new quickfix.field.AdvId());
+ }
+
+ public boolean isSet(quickfix.field.AdvId field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvId() {
+ return isSetField(2);
+ }
+
+ public void set(quickfix.field.AdvTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvTransType get(quickfix.field.AdvTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvTransType getAdvTransType() throws FieldNotFound {
+ return get(new quickfix.field.AdvTransType());
+ }
+
+ public boolean isSet(quickfix.field.AdvTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvTransType() {
+ return isSetField(5);
+ }
+
+ public void set(quickfix.field.AdvRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvRefID get(quickfix.field.AdvRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvRefID getAdvRefID() throws FieldNotFound {
+ return get(new quickfix.field.AdvRefID());
+ }
+
+ public boolean isSet(quickfix.field.AdvRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvRefID() {
+ return isSetField(3);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AdvSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdvSide get(quickfix.field.AdvSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdvSide getAdvSide() throws FieldNotFound {
+ return get(new quickfix.field.AdvSide());
+ }
+
+ public boolean isSet(quickfix.field.AdvSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdvSide() {
+ return isSetField(4);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.URLLink value) {
+ setField(value);
+ }
+
+ public quickfix.field.URLLink get(quickfix.field.URLLink value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.URLLink getURLLink() throws FieldNotFound {
+ return get(new quickfix.field.URLLink());
+ }
+
+ public boolean isSet(quickfix.field.URLLink field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetURLLink() {
+ return isSetField(149);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationInstruction.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationInstruction.java
new file mode 100644
index 000000000..791c8a529
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationInstruction.java
@@ -0,0 +1,7106 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class AllocationInstruction extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "J";
+
+
+ public AllocationInstruction() {
+
+ super(new int[] {70, 71, 626, 793, 72, 796, 808, 196, 197, 466, 857, 73, 124, 570, 700, 574, 54, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 53, 854, 30, 229, 336, 625, 423, 6, 860, 218, 220, 221, 222, 662, 663, 699, 761, 15, 74, 453, 75, 60, 63, 64, 775, 381, 238, 237, 118, 77, 754, 58, 354, 355, 157, 158, 159, 540, 738, 920, 921, 922, 650, 232, 235, 236, 701, 696, 697, 698, 892, 893, 78, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public AllocationInstruction(quickfix.field.AllocID allocID, quickfix.field.AllocTransType allocTransType, quickfix.field.AllocType allocType, quickfix.field.AllocNoOrdersType allocNoOrdersType, quickfix.field.Side side, quickfix.field.Quantity quantity, quickfix.field.AvgPx avgPx, quickfix.field.TradeDate tradeDate) {
+ this();
+ setField(allocID);
+ setField(allocTransType);
+ setField(allocType);
+ setField(allocNoOrdersType);
+ setField(side);
+ setField(quantity);
+ setField(avgPx);
+ setField(tradeDate);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.AllocTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocTransType get(quickfix.field.AllocTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocTransType getAllocTransType() throws FieldNotFound {
+ return get(new quickfix.field.AllocTransType());
+ }
+
+ public boolean isSet(quickfix.field.AllocTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocTransType() {
+ return isSetField(71);
+ }
+
+ public void set(quickfix.field.AllocType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocType get(quickfix.field.AllocType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocType getAllocType() throws FieldNotFound {
+ return get(new quickfix.field.AllocType());
+ }
+
+ public boolean isSet(quickfix.field.AllocType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocType() {
+ return isSetField(626);
+ }
+
+ public void set(quickfix.field.SecondaryAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryAllocID get(quickfix.field.SecondaryAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryAllocID getSecondaryAllocID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryAllocID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryAllocID() {
+ return isSetField(793);
+ }
+
+ public void set(quickfix.field.RefAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefAllocID get(quickfix.field.RefAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefAllocID getRefAllocID() throws FieldNotFound {
+ return get(new quickfix.field.RefAllocID());
+ }
+
+ public boolean isSet(quickfix.field.RefAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefAllocID() {
+ return isSetField(72);
+ }
+
+ public void set(quickfix.field.AllocCancReplaceReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocCancReplaceReason get(quickfix.field.AllocCancReplaceReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocCancReplaceReason getAllocCancReplaceReason() throws FieldNotFound {
+ return get(new quickfix.field.AllocCancReplaceReason());
+ }
+
+ public boolean isSet(quickfix.field.AllocCancReplaceReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocCancReplaceReason() {
+ return isSetField(796);
+ }
+
+ public void set(quickfix.field.AllocIntermedReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocIntermedReqType get(quickfix.field.AllocIntermedReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocIntermedReqType getAllocIntermedReqType() throws FieldNotFound {
+ return get(new quickfix.field.AllocIntermedReqType());
+ }
+
+ public boolean isSet(quickfix.field.AllocIntermedReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocIntermedReqType() {
+ return isSetField(808);
+ }
+
+ public void set(quickfix.field.AllocLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocLinkID get(quickfix.field.AllocLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocLinkID getAllocLinkID() throws FieldNotFound {
+ return get(new quickfix.field.AllocLinkID());
+ }
+
+ public boolean isSet(quickfix.field.AllocLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocLinkID() {
+ return isSetField(196);
+ }
+
+ public void set(quickfix.field.AllocLinkType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocLinkType get(quickfix.field.AllocLinkType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocLinkType getAllocLinkType() throws FieldNotFound {
+ return get(new quickfix.field.AllocLinkType());
+ }
+
+ public boolean isSet(quickfix.field.AllocLinkType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocLinkType() {
+ return isSetField(197);
+ }
+
+ public void set(quickfix.field.BookingRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingRefID get(quickfix.field.BookingRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingRefID getBookingRefID() throws FieldNotFound {
+ return get(new quickfix.field.BookingRefID());
+ }
+
+ public boolean isSet(quickfix.field.BookingRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingRefID() {
+ return isSetField(466);
+ }
+
+ public void set(quickfix.field.AllocNoOrdersType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocNoOrdersType get(quickfix.field.AllocNoOrdersType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocNoOrdersType getAllocNoOrdersType() throws FieldNotFound {
+ return get(new quickfix.field.AllocNoOrdersType());
+ }
+
+ public boolean isSet(quickfix.field.AllocNoOrdersType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocNoOrdersType() {
+ return isSetField(857);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 37, 198, 526, 66, 756, 38, 799, 800, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.OrderAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderAvgPx get(quickfix.field.OrderAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderAvgPx getOrderAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.OrderAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.OrderAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderAvgPx() {
+ return isSetField(799);
+ }
+
+ public void set(quickfix.field.OrderBookingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderBookingQty get(quickfix.field.OrderBookingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderBookingQty getOrderBookingQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderBookingQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderBookingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderBookingQty() {
+ return isSetField(800);
+ }
+
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {32, 17, 527, 31, 669, 29, 0};
+
+ public NoExecs() {
+ super(124, 32, ORDER);
+ }
+
+ public void set(quickfix.field.LastQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastQty get(quickfix.field.LastQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastQty getLastQty() throws FieldNotFound {
+ return get(new quickfix.field.LastQty());
+ }
+
+ public boolean isSet(quickfix.field.LastQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastQty() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.SecondaryExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryExecID get(quickfix.field.SecondaryExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryExecID getSecondaryExecID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryExecID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryExecID() {
+ return isSetField(527);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.LastParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastParPx get(quickfix.field.LastParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastParPx getLastParPx() throws FieldNotFound {
+ return get(new quickfix.field.LastParPx());
+ }
+
+ public boolean isSet(quickfix.field.LastParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastParPx() {
+ return isSetField(669);
+ }
+
+ public void set(quickfix.field.LastCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastCapacity get(quickfix.field.LastCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastCapacity getLastCapacity() throws FieldNotFound {
+ return get(new quickfix.field.LastCapacity());
+ }
+
+ public boolean isSet(quickfix.field.LastCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastCapacity() {
+ return isSetField(29);
+ }
+
+ }
+
+ public void set(quickfix.field.PreviouslyReported value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreviouslyReported get(quickfix.field.PreviouslyReported value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreviouslyReported getPreviouslyReported() throws FieldNotFound {
+ return get(new quickfix.field.PreviouslyReported());
+ }
+
+ public boolean isSet(quickfix.field.PreviouslyReported field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreviouslyReported() {
+ return isSetField(570);
+ }
+
+ public void set(quickfix.field.ReversalIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ReversalIndicator get(quickfix.field.ReversalIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ReversalIndicator getReversalIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ReversalIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ReversalIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetReversalIndicator() {
+ return isSetField(700);
+ }
+
+ public void set(quickfix.field.MatchType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchType get(quickfix.field.MatchType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchType getMatchType() throws FieldNotFound {
+ return get(new quickfix.field.MatchType());
+ }
+
+ public boolean isSet(quickfix.field.MatchType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchType() {
+ return isSetField(574);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.AvgParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgParPx get(quickfix.field.AvgParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgParPx getAvgParPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgParPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgParPx() {
+ return isSetField(860);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.AvgPxPrecision value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPxPrecision get(quickfix.field.AvgPxPrecision value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPxPrecision getAvgPxPrecision() throws FieldNotFound {
+ return get(new quickfix.field.AvgPxPrecision());
+ }
+
+ public boolean isSet(quickfix.field.AvgPxPrecision field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPxPrecision() {
+ return isSetField(74);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.Concession value) {
+ setField(value);
+ }
+
+ public quickfix.field.Concession get(quickfix.field.Concession value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Concession getConcession() throws FieldNotFound {
+ return get(new quickfix.field.Concession());
+ }
+
+ public boolean isSet(quickfix.field.Concession field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConcession() {
+ return isSetField(238);
+ }
+
+ public void set(quickfix.field.TotalTakedown value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalTakedown get(quickfix.field.TotalTakedown value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalTakedown getTotalTakedown() throws FieldNotFound {
+ return get(new quickfix.field.TotalTakedown());
+ }
+
+ public boolean isSet(quickfix.field.TotalTakedown field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalTakedown() {
+ return isSetField(237);
+ }
+
+ public void set(quickfix.field.NetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetMoney get(quickfix.field.NetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetMoney getNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.NetMoney());
+ }
+
+ public boolean isSet(quickfix.field.NetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetMoney() {
+ return isSetField(118);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.AutoAcceptIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.AutoAcceptIndicator get(quickfix.field.AutoAcceptIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AutoAcceptIndicator getAutoAcceptIndicator() throws FieldNotFound {
+ return get(new quickfix.field.AutoAcceptIndicator());
+ }
+
+ public boolean isSet(quickfix.field.AutoAcceptIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAutoAcceptIndicator() {
+ return isSetField(754);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NumDaysInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumDaysInterest get(quickfix.field.NumDaysInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumDaysInterest getNumDaysInterest() throws FieldNotFound {
+ return get(new quickfix.field.NumDaysInterest());
+ }
+
+ public boolean isSet(quickfix.field.NumDaysInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumDaysInterest() {
+ return isSetField(157);
+ }
+
+ public void set(quickfix.field.AccruedInterestRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestRate get(quickfix.field.AccruedInterestRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestRate getAccruedInterestRate() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestRate());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestRate() {
+ return isSetField(158);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.TotalAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalAccruedInterestAmt get(quickfix.field.TotalAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalAccruedInterestAmt getTotalAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.TotalAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.TotalAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalAccruedInterestAmt() {
+ return isSetField(540);
+ }
+
+ public void set(quickfix.field.InterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAtMaturity get(quickfix.field.InterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAtMaturity getInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.InterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.InterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAtMaturity() {
+ return isSetField(738);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.field.LegalConfirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegalConfirm get(quickfix.field.LegalConfirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegalConfirm getLegalConfirm() throws FieldNotFound {
+ return get(new quickfix.field.LegalConfirm());
+ }
+
+ public boolean isSet(quickfix.field.LegalConfirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegalConfirm() {
+ return isSetField(650);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.TotNoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoAllocs get(quickfix.field.TotNoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoAllocs getTotNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.TotNoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.TotNoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoAllocs() {
+ return isSetField(892);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 573, 366, 80, 467, 81, 539, 208, 209, 161, 360, 361, 12, 13, 479, 497, 153, 154, 119, 737, 120, 736, 155, 156, 742, 741, 160, 136, 576, 577, 635, 780, 172, 169, 170, 171, 85, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.AllocPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocPrice get(quickfix.field.AllocPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocPrice getAllocPrice() throws FieldNotFound {
+ return get(new quickfix.field.AllocPrice());
+ }
+
+ public boolean isSet(quickfix.field.AllocPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocPrice() {
+ return isSetField(366);
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NotifyBrokerOfCredit value) {
+ setField(value);
+ }
+
+ public quickfix.field.NotifyBrokerOfCredit get(quickfix.field.NotifyBrokerOfCredit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NotifyBrokerOfCredit getNotifyBrokerOfCredit() throws FieldNotFound {
+ return get(new quickfix.field.NotifyBrokerOfCredit());
+ }
+
+ public boolean isSet(quickfix.field.NotifyBrokerOfCredit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNotifyBrokerOfCredit() {
+ return isSetField(208);
+ }
+
+ public void set(quickfix.field.AllocHandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocHandlInst get(quickfix.field.AllocHandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocHandlInst getAllocHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.AllocHandlInst());
+ }
+
+ public boolean isSet(quickfix.field.AllocHandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocHandlInst() {
+ return isSetField(209);
+ }
+
+ public void set(quickfix.field.AllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocText get(quickfix.field.AllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocText getAllocText() throws FieldNotFound {
+ return get(new quickfix.field.AllocText());
+ }
+
+ public boolean isSet(quickfix.field.AllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocText() {
+ return isSetField(161);
+ }
+
+ public void set(quickfix.field.EncodedAllocTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocTextLen get(quickfix.field.EncodedAllocTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocTextLen getEncodedAllocTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocTextLen() {
+ return isSetField(360);
+ }
+
+ public void set(quickfix.field.EncodedAllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocText get(quickfix.field.EncodedAllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocText getEncodedAllocText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocText() {
+ return isSetField(361);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.AllocAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAvgPx get(quickfix.field.AllocAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAvgPx getAllocAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AllocAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AllocAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAvgPx() {
+ return isSetField(153);
+ }
+
+ public void set(quickfix.field.AllocNetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocNetMoney get(quickfix.field.AllocNetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocNetMoney getAllocNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.AllocNetMoney());
+ }
+
+ public boolean isSet(quickfix.field.AllocNetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocNetMoney() {
+ return isSetField(154);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrAmt get(quickfix.field.AllocSettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrAmt getAllocSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrAmt() {
+ return isSetField(737);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.AllocAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccruedInterestAmt get(quickfix.field.AllocAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccruedInterestAmt getAllocAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccruedInterestAmt() {
+ return isSetField(742);
+ }
+
+ public void set(quickfix.field.AllocInterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocInterestAtMaturity get(quickfix.field.AllocInterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocInterestAtMaturity getAllocInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.AllocInterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.AllocInterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocInterestAtMaturity() {
+ return isSetField(741);
+ }
+
+ public void set(quickfix.field.SettlInstMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMode get(quickfix.field.SettlInstMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMode getSettlInstMode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMode() {
+ return isSetField(160);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.NoClearingInstructions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoClearingInstructions get(quickfix.field.NoClearingInstructions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoClearingInstructions getNoClearingInstructions() throws FieldNotFound {
+ return get(new quickfix.field.NoClearingInstructions());
+ }
+
+ public boolean isSet(quickfix.field.NoClearingInstructions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoClearingInstructions() {
+ return isSetField(576);
+ }
+
+ public void set(quickfix.field.ClearingInstruction value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingInstruction get(quickfix.field.ClearingInstruction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingInstruction getClearingInstruction() throws FieldNotFound {
+ return get(new quickfix.field.ClearingInstruction());
+ }
+
+ public boolean isSet(quickfix.field.ClearingInstruction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingInstruction() {
+ return isSetField(577);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.AllocSettlInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlInstType get(quickfix.field.AllocSettlInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlInstType getAllocSettlInstType() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlInstType());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlInstType() {
+ return isSetField(780);
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationInstructionAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationInstructionAck.java
new file mode 100644
index 000000000..948ea5b4d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationInstructionAck.java
@@ -0,0 +1,704 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class AllocationInstructionAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "P";
+
+
+ public AllocationInstructionAck() {
+
+ super(new int[] {70, 453, 793, 75, 60, 87, 88, 626, 808, 573, 460, 167, 58, 354, 355, 78, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public AllocationInstructionAck(quickfix.field.AllocID allocID, quickfix.field.TransactTime transactTime, quickfix.field.AllocStatus allocStatus) {
+ this();
+ setField(allocID);
+ setField(transactTime);
+ setField(allocStatus);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.SecondaryAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryAllocID get(quickfix.field.SecondaryAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryAllocID getSecondaryAllocID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryAllocID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryAllocID() {
+ return isSetField(793);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.AllocStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocStatus get(quickfix.field.AllocStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocStatus getAllocStatus() throws FieldNotFound {
+ return get(new quickfix.field.AllocStatus());
+ }
+
+ public boolean isSet(quickfix.field.AllocStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocStatus() {
+ return isSetField(87);
+ }
+
+ public void set(quickfix.field.AllocRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocRejCode get(quickfix.field.AllocRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocRejCode getAllocRejCode() throws FieldNotFound {
+ return get(new quickfix.field.AllocRejCode());
+ }
+
+ public boolean isSet(quickfix.field.AllocRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocRejCode() {
+ return isSetField(88);
+ }
+
+ public void set(quickfix.field.AllocType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocType get(quickfix.field.AllocType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocType getAllocType() throws FieldNotFound {
+ return get(new quickfix.field.AllocType());
+ }
+
+ public boolean isSet(quickfix.field.AllocType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocType() {
+ return isSetField(626);
+ }
+
+ public void set(quickfix.field.AllocIntermedReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocIntermedReqType get(quickfix.field.AllocIntermedReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocIntermedReqType getAllocIntermedReqType() throws FieldNotFound {
+ return get(new quickfix.field.AllocIntermedReqType());
+ }
+
+ public boolean isSet(quickfix.field.AllocIntermedReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocIntermedReqType() {
+ return isSetField(808);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 366, 467, 776, 161, 360, 361, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocPrice get(quickfix.field.AllocPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocPrice getAllocPrice() throws FieldNotFound {
+ return get(new quickfix.field.AllocPrice());
+ }
+
+ public boolean isSet(quickfix.field.AllocPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocPrice() {
+ return isSetField(366);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.field.IndividualAllocRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocRejCode get(quickfix.field.IndividualAllocRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocRejCode getIndividualAllocRejCode() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocRejCode());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocRejCode() {
+ return isSetField(776);
+ }
+
+ public void set(quickfix.field.AllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocText get(quickfix.field.AllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocText getAllocText() throws FieldNotFound {
+ return get(new quickfix.field.AllocText());
+ }
+
+ public boolean isSet(quickfix.field.AllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocText() {
+ return isSetField(161);
+ }
+
+ public void set(quickfix.field.EncodedAllocTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocTextLen get(quickfix.field.EncodedAllocTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocTextLen getEncodedAllocTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocTextLen() {
+ return isSetField(360);
+ }
+
+ public void set(quickfix.field.EncodedAllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocText get(quickfix.field.EncodedAllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocText getEncodedAllocText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocText() {
+ return isSetField(361);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationReport.java
new file mode 100644
index 000000000..e65b6cb13
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationReport.java
@@ -0,0 +1,7181 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class AllocationReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AS";
+
+
+ public AllocationReport() {
+
+ super(new int[] {755, 70, 71, 795, 796, 793, 794, 87, 88, 72, 808, 196, 197, 466, 857, 73, 124, 570, 700, 574, 54, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 53, 854, 30, 229, 336, 625, 423, 6, 860, 218, 220, 221, 222, 662, 663, 699, 761, 15, 74, 453, 75, 60, 63, 64, 775, 381, 238, 237, 118, 77, 754, 58, 354, 355, 157, 158, 159, 540, 738, 920, 921, 922, 650, 232, 235, 236, 701, 696, 697, 698, 892, 893, 78, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public AllocationReport(quickfix.field.AllocReportID allocReportID, quickfix.field.AllocTransType allocTransType, quickfix.field.AllocReportType allocReportType, quickfix.field.AllocStatus allocStatus, quickfix.field.AllocNoOrdersType allocNoOrdersType, quickfix.field.Side side, quickfix.field.Quantity quantity, quickfix.field.AvgPx avgPx, quickfix.field.TradeDate tradeDate) {
+ this();
+ setField(allocReportID);
+ setField(allocTransType);
+ setField(allocReportType);
+ setField(allocStatus);
+ setField(allocNoOrdersType);
+ setField(side);
+ setField(quantity);
+ setField(avgPx);
+ setField(tradeDate);
+ }
+
+ public void set(quickfix.field.AllocReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocReportID get(quickfix.field.AllocReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocReportID getAllocReportID() throws FieldNotFound {
+ return get(new quickfix.field.AllocReportID());
+ }
+
+ public boolean isSet(quickfix.field.AllocReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocReportID() {
+ return isSetField(755);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.AllocTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocTransType get(quickfix.field.AllocTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocTransType getAllocTransType() throws FieldNotFound {
+ return get(new quickfix.field.AllocTransType());
+ }
+
+ public boolean isSet(quickfix.field.AllocTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocTransType() {
+ return isSetField(71);
+ }
+
+ public void set(quickfix.field.AllocReportRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocReportRefID get(quickfix.field.AllocReportRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocReportRefID getAllocReportRefID() throws FieldNotFound {
+ return get(new quickfix.field.AllocReportRefID());
+ }
+
+ public boolean isSet(quickfix.field.AllocReportRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocReportRefID() {
+ return isSetField(795);
+ }
+
+ public void set(quickfix.field.AllocCancReplaceReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocCancReplaceReason get(quickfix.field.AllocCancReplaceReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocCancReplaceReason getAllocCancReplaceReason() throws FieldNotFound {
+ return get(new quickfix.field.AllocCancReplaceReason());
+ }
+
+ public boolean isSet(quickfix.field.AllocCancReplaceReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocCancReplaceReason() {
+ return isSetField(796);
+ }
+
+ public void set(quickfix.field.SecondaryAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryAllocID get(quickfix.field.SecondaryAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryAllocID getSecondaryAllocID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryAllocID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryAllocID() {
+ return isSetField(793);
+ }
+
+ public void set(quickfix.field.AllocReportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocReportType get(quickfix.field.AllocReportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocReportType getAllocReportType() throws FieldNotFound {
+ return get(new quickfix.field.AllocReportType());
+ }
+
+ public boolean isSet(quickfix.field.AllocReportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocReportType() {
+ return isSetField(794);
+ }
+
+ public void set(quickfix.field.AllocStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocStatus get(quickfix.field.AllocStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocStatus getAllocStatus() throws FieldNotFound {
+ return get(new quickfix.field.AllocStatus());
+ }
+
+ public boolean isSet(quickfix.field.AllocStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocStatus() {
+ return isSetField(87);
+ }
+
+ public void set(quickfix.field.AllocRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocRejCode get(quickfix.field.AllocRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocRejCode getAllocRejCode() throws FieldNotFound {
+ return get(new quickfix.field.AllocRejCode());
+ }
+
+ public boolean isSet(quickfix.field.AllocRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocRejCode() {
+ return isSetField(88);
+ }
+
+ public void set(quickfix.field.RefAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefAllocID get(quickfix.field.RefAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefAllocID getRefAllocID() throws FieldNotFound {
+ return get(new quickfix.field.RefAllocID());
+ }
+
+ public boolean isSet(quickfix.field.RefAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefAllocID() {
+ return isSetField(72);
+ }
+
+ public void set(quickfix.field.AllocIntermedReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocIntermedReqType get(quickfix.field.AllocIntermedReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocIntermedReqType getAllocIntermedReqType() throws FieldNotFound {
+ return get(new quickfix.field.AllocIntermedReqType());
+ }
+
+ public boolean isSet(quickfix.field.AllocIntermedReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocIntermedReqType() {
+ return isSetField(808);
+ }
+
+ public void set(quickfix.field.AllocLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocLinkID get(quickfix.field.AllocLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocLinkID getAllocLinkID() throws FieldNotFound {
+ return get(new quickfix.field.AllocLinkID());
+ }
+
+ public boolean isSet(quickfix.field.AllocLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocLinkID() {
+ return isSetField(196);
+ }
+
+ public void set(quickfix.field.AllocLinkType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocLinkType get(quickfix.field.AllocLinkType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocLinkType getAllocLinkType() throws FieldNotFound {
+ return get(new quickfix.field.AllocLinkType());
+ }
+
+ public boolean isSet(quickfix.field.AllocLinkType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocLinkType() {
+ return isSetField(197);
+ }
+
+ public void set(quickfix.field.BookingRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingRefID get(quickfix.field.BookingRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingRefID getBookingRefID() throws FieldNotFound {
+ return get(new quickfix.field.BookingRefID());
+ }
+
+ public boolean isSet(quickfix.field.BookingRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingRefID() {
+ return isSetField(466);
+ }
+
+ public void set(quickfix.field.AllocNoOrdersType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocNoOrdersType get(quickfix.field.AllocNoOrdersType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocNoOrdersType getAllocNoOrdersType() throws FieldNotFound {
+ return get(new quickfix.field.AllocNoOrdersType());
+ }
+
+ public boolean isSet(quickfix.field.AllocNoOrdersType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocNoOrdersType() {
+ return isSetField(857);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 37, 198, 526, 66, 756, 38, 799, 800, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.OrderAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderAvgPx get(quickfix.field.OrderAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderAvgPx getOrderAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.OrderAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.OrderAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderAvgPx() {
+ return isSetField(799);
+ }
+
+ public void set(quickfix.field.OrderBookingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderBookingQty get(quickfix.field.OrderBookingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderBookingQty getOrderBookingQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderBookingQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderBookingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderBookingQty() {
+ return isSetField(800);
+ }
+
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {32, 17, 527, 31, 669, 29, 0};
+
+ public NoExecs() {
+ super(124, 32, ORDER);
+ }
+
+ public void set(quickfix.field.LastQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastQty get(quickfix.field.LastQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastQty getLastQty() throws FieldNotFound {
+ return get(new quickfix.field.LastQty());
+ }
+
+ public boolean isSet(quickfix.field.LastQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastQty() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.SecondaryExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryExecID get(quickfix.field.SecondaryExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryExecID getSecondaryExecID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryExecID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryExecID() {
+ return isSetField(527);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.LastParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastParPx get(quickfix.field.LastParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastParPx getLastParPx() throws FieldNotFound {
+ return get(new quickfix.field.LastParPx());
+ }
+
+ public boolean isSet(quickfix.field.LastParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastParPx() {
+ return isSetField(669);
+ }
+
+ public void set(quickfix.field.LastCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastCapacity get(quickfix.field.LastCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastCapacity getLastCapacity() throws FieldNotFound {
+ return get(new quickfix.field.LastCapacity());
+ }
+
+ public boolean isSet(quickfix.field.LastCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastCapacity() {
+ return isSetField(29);
+ }
+
+ }
+
+ public void set(quickfix.field.PreviouslyReported value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreviouslyReported get(quickfix.field.PreviouslyReported value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreviouslyReported getPreviouslyReported() throws FieldNotFound {
+ return get(new quickfix.field.PreviouslyReported());
+ }
+
+ public boolean isSet(quickfix.field.PreviouslyReported field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreviouslyReported() {
+ return isSetField(570);
+ }
+
+ public void set(quickfix.field.ReversalIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ReversalIndicator get(quickfix.field.ReversalIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ReversalIndicator getReversalIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ReversalIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ReversalIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetReversalIndicator() {
+ return isSetField(700);
+ }
+
+ public void set(quickfix.field.MatchType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchType get(quickfix.field.MatchType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchType getMatchType() throws FieldNotFound {
+ return get(new quickfix.field.MatchType());
+ }
+
+ public boolean isSet(quickfix.field.MatchType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchType() {
+ return isSetField(574);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.AvgParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgParPx get(quickfix.field.AvgParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgParPx getAvgParPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgParPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgParPx() {
+ return isSetField(860);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.AvgPxPrecision value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPxPrecision get(quickfix.field.AvgPxPrecision value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPxPrecision getAvgPxPrecision() throws FieldNotFound {
+ return get(new quickfix.field.AvgPxPrecision());
+ }
+
+ public boolean isSet(quickfix.field.AvgPxPrecision field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPxPrecision() {
+ return isSetField(74);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.Concession value) {
+ setField(value);
+ }
+
+ public quickfix.field.Concession get(quickfix.field.Concession value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Concession getConcession() throws FieldNotFound {
+ return get(new quickfix.field.Concession());
+ }
+
+ public boolean isSet(quickfix.field.Concession field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConcession() {
+ return isSetField(238);
+ }
+
+ public void set(quickfix.field.TotalTakedown value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalTakedown get(quickfix.field.TotalTakedown value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalTakedown getTotalTakedown() throws FieldNotFound {
+ return get(new quickfix.field.TotalTakedown());
+ }
+
+ public boolean isSet(quickfix.field.TotalTakedown field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalTakedown() {
+ return isSetField(237);
+ }
+
+ public void set(quickfix.field.NetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetMoney get(quickfix.field.NetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetMoney getNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.NetMoney());
+ }
+
+ public boolean isSet(quickfix.field.NetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetMoney() {
+ return isSetField(118);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.AutoAcceptIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.AutoAcceptIndicator get(quickfix.field.AutoAcceptIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AutoAcceptIndicator getAutoAcceptIndicator() throws FieldNotFound {
+ return get(new quickfix.field.AutoAcceptIndicator());
+ }
+
+ public boolean isSet(quickfix.field.AutoAcceptIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAutoAcceptIndicator() {
+ return isSetField(754);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NumDaysInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumDaysInterest get(quickfix.field.NumDaysInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumDaysInterest getNumDaysInterest() throws FieldNotFound {
+ return get(new quickfix.field.NumDaysInterest());
+ }
+
+ public boolean isSet(quickfix.field.NumDaysInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumDaysInterest() {
+ return isSetField(157);
+ }
+
+ public void set(quickfix.field.AccruedInterestRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestRate get(quickfix.field.AccruedInterestRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestRate getAccruedInterestRate() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestRate());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestRate() {
+ return isSetField(158);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.TotalAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalAccruedInterestAmt get(quickfix.field.TotalAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalAccruedInterestAmt getTotalAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.TotalAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.TotalAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalAccruedInterestAmt() {
+ return isSetField(540);
+ }
+
+ public void set(quickfix.field.InterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAtMaturity get(quickfix.field.InterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAtMaturity getInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.InterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.InterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAtMaturity() {
+ return isSetField(738);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.field.LegalConfirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegalConfirm get(quickfix.field.LegalConfirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegalConfirm getLegalConfirm() throws FieldNotFound {
+ return get(new quickfix.field.LegalConfirm());
+ }
+
+ public boolean isSet(quickfix.field.LegalConfirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegalConfirm() {
+ return isSetField(650);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.TotNoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoAllocs get(quickfix.field.TotNoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoAllocs getTotNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.TotNoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.TotNoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoAllocs() {
+ return isSetField(892);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 573, 366, 80, 467, 81, 539, 208, 209, 161, 360, 361, 12, 13, 479, 497, 153, 154, 119, 737, 120, 736, 155, 156, 742, 741, 136, 576, 635, 780, 172, 169, 170, 171, 85, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.AllocPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocPrice get(quickfix.field.AllocPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocPrice getAllocPrice() throws FieldNotFound {
+ return get(new quickfix.field.AllocPrice());
+ }
+
+ public boolean isSet(quickfix.field.AllocPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocPrice() {
+ return isSetField(366);
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NotifyBrokerOfCredit value) {
+ setField(value);
+ }
+
+ public quickfix.field.NotifyBrokerOfCredit get(quickfix.field.NotifyBrokerOfCredit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NotifyBrokerOfCredit getNotifyBrokerOfCredit() throws FieldNotFound {
+ return get(new quickfix.field.NotifyBrokerOfCredit());
+ }
+
+ public boolean isSet(quickfix.field.NotifyBrokerOfCredit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNotifyBrokerOfCredit() {
+ return isSetField(208);
+ }
+
+ public void set(quickfix.field.AllocHandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocHandlInst get(quickfix.field.AllocHandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocHandlInst getAllocHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.AllocHandlInst());
+ }
+
+ public boolean isSet(quickfix.field.AllocHandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocHandlInst() {
+ return isSetField(209);
+ }
+
+ public void set(quickfix.field.AllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocText get(quickfix.field.AllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocText getAllocText() throws FieldNotFound {
+ return get(new quickfix.field.AllocText());
+ }
+
+ public boolean isSet(quickfix.field.AllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocText() {
+ return isSetField(161);
+ }
+
+ public void set(quickfix.field.EncodedAllocTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocTextLen get(quickfix.field.EncodedAllocTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocTextLen getEncodedAllocTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocTextLen() {
+ return isSetField(360);
+ }
+
+ public void set(quickfix.field.EncodedAllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocText get(quickfix.field.EncodedAllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocText getEncodedAllocText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocText() {
+ return isSetField(361);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.AllocAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAvgPx get(quickfix.field.AllocAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAvgPx getAllocAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AllocAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AllocAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAvgPx() {
+ return isSetField(153);
+ }
+
+ public void set(quickfix.field.AllocNetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocNetMoney get(quickfix.field.AllocNetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocNetMoney getAllocNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.AllocNetMoney());
+ }
+
+ public boolean isSet(quickfix.field.AllocNetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocNetMoney() {
+ return isSetField(154);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrAmt get(quickfix.field.AllocSettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrAmt getAllocSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrAmt() {
+ return isSetField(737);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.AllocAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccruedInterestAmt get(quickfix.field.AllocAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccruedInterestAmt getAllocAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccruedInterestAmt() {
+ return isSetField(742);
+ }
+
+ public void set(quickfix.field.AllocInterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocInterestAtMaturity get(quickfix.field.AllocInterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocInterestAtMaturity getAllocInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.AllocInterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.AllocInterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocInterestAtMaturity() {
+ return isSetField(741);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.NoClearingInstructions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoClearingInstructions get(quickfix.field.NoClearingInstructions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoClearingInstructions getNoClearingInstructions() throws FieldNotFound {
+ return get(new quickfix.field.NoClearingInstructions());
+ }
+
+ public boolean isSet(quickfix.field.NoClearingInstructions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoClearingInstructions() {
+ return isSetField(576);
+ }
+
+ public static class NoClearingInstructions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {577, 0};
+
+ public NoClearingInstructions() {
+ super(576, 577, ORDER);
+ }
+
+ public void set(quickfix.field.ClearingInstruction value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingInstruction get(quickfix.field.ClearingInstruction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingInstruction getClearingInstruction() throws FieldNotFound {
+ return get(new quickfix.field.ClearingInstruction());
+ }
+
+ public boolean isSet(quickfix.field.ClearingInstruction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingInstruction() {
+ return isSetField(577);
+ }
+
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.AllocSettlInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlInstType get(quickfix.field.AllocSettlInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlInstType getAllocSettlInstType() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlInstType());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlInstType() {
+ return isSetField(780);
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationReportAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationReportAck.java
new file mode 100644
index 000000000..2cc8672ae
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AllocationReportAck.java
@@ -0,0 +1,726 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class AllocationReportAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AT";
+
+
+ public AllocationReportAck() {
+
+ super(new int[] {755, 70, 453, 793, 75, 60, 87, 88, 794, 808, 573, 460, 167, 58, 354, 355, 78, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public AllocationReportAck(quickfix.field.AllocReportID allocReportID, quickfix.field.AllocID allocID, quickfix.field.TransactTime transactTime, quickfix.field.AllocStatus allocStatus) {
+ this();
+ setField(allocReportID);
+ setField(allocID);
+ setField(transactTime);
+ setField(allocStatus);
+ }
+
+ public void set(quickfix.field.AllocReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocReportID get(quickfix.field.AllocReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocReportID getAllocReportID() throws FieldNotFound {
+ return get(new quickfix.field.AllocReportID());
+ }
+
+ public boolean isSet(quickfix.field.AllocReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocReportID() {
+ return isSetField(755);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.SecondaryAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryAllocID get(quickfix.field.SecondaryAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryAllocID getSecondaryAllocID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryAllocID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryAllocID() {
+ return isSetField(793);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.AllocStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocStatus get(quickfix.field.AllocStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocStatus getAllocStatus() throws FieldNotFound {
+ return get(new quickfix.field.AllocStatus());
+ }
+
+ public boolean isSet(quickfix.field.AllocStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocStatus() {
+ return isSetField(87);
+ }
+
+ public void set(quickfix.field.AllocRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocRejCode get(quickfix.field.AllocRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocRejCode getAllocRejCode() throws FieldNotFound {
+ return get(new quickfix.field.AllocRejCode());
+ }
+
+ public boolean isSet(quickfix.field.AllocRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocRejCode() {
+ return isSetField(88);
+ }
+
+ public void set(quickfix.field.AllocReportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocReportType get(quickfix.field.AllocReportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocReportType getAllocReportType() throws FieldNotFound {
+ return get(new quickfix.field.AllocReportType());
+ }
+
+ public boolean isSet(quickfix.field.AllocReportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocReportType() {
+ return isSetField(794);
+ }
+
+ public void set(quickfix.field.AllocIntermedReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocIntermedReqType get(quickfix.field.AllocIntermedReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocIntermedReqType getAllocIntermedReqType() throws FieldNotFound {
+ return get(new quickfix.field.AllocIntermedReqType());
+ }
+
+ public boolean isSet(quickfix.field.AllocIntermedReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocIntermedReqType() {
+ return isSetField(808);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 366, 467, 776, 161, 360, 361, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocPrice get(quickfix.field.AllocPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocPrice getAllocPrice() throws FieldNotFound {
+ return get(new quickfix.field.AllocPrice());
+ }
+
+ public boolean isSet(quickfix.field.AllocPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocPrice() {
+ return isSetField(366);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.field.IndividualAllocRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocRejCode get(quickfix.field.IndividualAllocRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocRejCode getIndividualAllocRejCode() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocRejCode());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocRejCode() {
+ return isSetField(776);
+ }
+
+ public void set(quickfix.field.AllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocText get(quickfix.field.AllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocText getAllocText() throws FieldNotFound {
+ return get(new quickfix.field.AllocText());
+ }
+
+ public boolean isSet(quickfix.field.AllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocText() {
+ return isSetField(161);
+ }
+
+ public void set(quickfix.field.EncodedAllocTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocTextLen get(quickfix.field.EncodedAllocTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocTextLen getEncodedAllocTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocTextLen() {
+ return isSetField(360);
+ }
+
+ public void set(quickfix.field.EncodedAllocText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedAllocText get(quickfix.field.EncodedAllocText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedAllocText getEncodedAllocText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedAllocText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedAllocText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedAllocText() {
+ return isSetField(361);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AssignmentReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AssignmentReport.java
new file mode 100644
index 000000000..58e1ab4f2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/AssignmentReport.java
@@ -0,0 +1,4252 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class AssignmentReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AW";
+
+
+ public AssignmentReport() {
+
+ super(new int[] {833, 832, 912, 453, 1, 581, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 555, 711, 702, 753, 834, 730, 731, 732, 432, 744, 745, 746, 747, 716, 717, 715, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public AssignmentReport(quickfix.field.AsgnRptID asgnRptID, quickfix.field.AccountType accountType, quickfix.field.SettlPrice settlPrice, quickfix.field.SettlPriceType settlPriceType, quickfix.field.UnderlyingSettlPrice underlyingSettlPrice, quickfix.field.AssignmentMethod assignmentMethod, quickfix.field.OpenInterest openInterest, quickfix.field.ExerciseMethod exerciseMethod, quickfix.field.SettlSessID settlSessID, quickfix.field.SettlSessSubID settlSessSubID, quickfix.field.ClearingBusinessDate clearingBusinessDate) {
+ this();
+ setField(asgnRptID);
+ setField(accountType);
+ setField(settlPrice);
+ setField(settlPriceType);
+ setField(underlyingSettlPrice);
+ setField(assignmentMethod);
+ setField(openInterest);
+ setField(exerciseMethod);
+ setField(settlSessID);
+ setField(settlSessSubID);
+ setField(clearingBusinessDate);
+ }
+
+ public void set(quickfix.field.AsgnRptID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AsgnRptID get(quickfix.field.AsgnRptID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AsgnRptID getAsgnRptID() throws FieldNotFound {
+ return get(new quickfix.field.AsgnRptID());
+ }
+
+ public boolean isSet(quickfix.field.AsgnRptID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAsgnRptID() {
+ return isSetField(833);
+ }
+
+ public void set(quickfix.field.TotNumAssignmentReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNumAssignmentReports get(quickfix.field.TotNumAssignmentReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNumAssignmentReports getTotNumAssignmentReports() throws FieldNotFound {
+ return get(new quickfix.field.TotNumAssignmentReports());
+ }
+
+ public boolean isSet(quickfix.field.TotNumAssignmentReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNumAssignmentReports() {
+ return isSetField(832);
+ }
+
+ public void set(quickfix.field.LastRptRequested value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastRptRequested get(quickfix.field.LastRptRequested value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastRptRequested getLastRptRequested() throws FieldNotFound {
+ return get(new quickfix.field.LastRptRequested());
+ }
+
+ public boolean isSet(quickfix.field.LastRptRequested field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastRptRequested() {
+ return isSetField(912);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.PositionQty component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionQty get(quickfix.fix44.component.PositionQty component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionQty getPositionQty() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionQty());
+ }
+
+ public void set(quickfix.field.NoPositions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPositions get(quickfix.field.NoPositions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPositions getNoPositions() throws FieldNotFound {
+ return get(new quickfix.field.NoPositions());
+ }
+
+ public boolean isSet(quickfix.field.NoPositions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPositions() {
+ return isSetField(702);
+ }
+
+ public static class NoPositions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {703, 704, 705, 706, 539, 0};
+
+ public NoPositions() {
+ super(702, 703, ORDER);
+ }
+
+ public void set(quickfix.field.PosType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosType get(quickfix.field.PosType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosType getPosType() throws FieldNotFound {
+ return get(new quickfix.field.PosType());
+ }
+
+ public boolean isSet(quickfix.field.PosType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosType() {
+ return isSetField(703);
+ }
+
+ public void set(quickfix.field.LongQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LongQty get(quickfix.field.LongQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LongQty getLongQty() throws FieldNotFound {
+ return get(new quickfix.field.LongQty());
+ }
+
+ public boolean isSet(quickfix.field.LongQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLongQty() {
+ return isSetField(704);
+ }
+
+ public void set(quickfix.field.ShortQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.ShortQty get(quickfix.field.ShortQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ShortQty getShortQty() throws FieldNotFound {
+ return get(new quickfix.field.ShortQty());
+ }
+
+ public boolean isSet(quickfix.field.ShortQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShortQty() {
+ return isSetField(705);
+ }
+
+ public void set(quickfix.field.PosQtyStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosQtyStatus get(quickfix.field.PosQtyStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosQtyStatus getPosQtyStatus() throws FieldNotFound {
+ return get(new quickfix.field.PosQtyStatus());
+ }
+
+ public boolean isSet(quickfix.field.PosQtyStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosQtyStatus() {
+ return isSetField(706);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.PositionAmountData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionAmountData get(quickfix.fix44.component.PositionAmountData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionAmountData getPositionAmountData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionAmountData());
+ }
+
+ public void set(quickfix.field.NoPosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPosAmt get(quickfix.field.NoPosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPosAmt getNoPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.NoPosAmt());
+ }
+
+ public boolean isSet(quickfix.field.NoPosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPosAmt() {
+ return isSetField(753);
+ }
+
+ public static class NoPosAmt extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {707, 708, 0};
+
+ public NoPosAmt() {
+ super(753, 707, ORDER);
+ }
+
+ public void set(quickfix.field.PosAmtType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmtType get(quickfix.field.PosAmtType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmtType getPosAmtType() throws FieldNotFound {
+ return get(new quickfix.field.PosAmtType());
+ }
+
+ public boolean isSet(quickfix.field.PosAmtType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmtType() {
+ return isSetField(707);
+ }
+
+ public void set(quickfix.field.PosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmt get(quickfix.field.PosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmt getPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.PosAmt());
+ }
+
+ public boolean isSet(quickfix.field.PosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmt() {
+ return isSetField(708);
+ }
+
+ }
+
+ public void set(quickfix.field.ThresholdAmount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ThresholdAmount get(quickfix.field.ThresholdAmount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ThresholdAmount getThresholdAmount() throws FieldNotFound {
+ return get(new quickfix.field.ThresholdAmount());
+ }
+
+ public boolean isSet(quickfix.field.ThresholdAmount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetThresholdAmount() {
+ return isSetField(834);
+ }
+
+ public void set(quickfix.field.SettlPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPrice get(quickfix.field.SettlPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPrice getSettlPrice() throws FieldNotFound {
+ return get(new quickfix.field.SettlPrice());
+ }
+
+ public boolean isSet(quickfix.field.SettlPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPrice() {
+ return isSetField(730);
+ }
+
+ public void set(quickfix.field.SettlPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPriceType get(quickfix.field.SettlPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPriceType getSettlPriceType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPriceType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPriceType() {
+ return isSetField(731);
+ }
+
+ public void set(quickfix.field.UnderlyingSettlPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSettlPrice get(quickfix.field.UnderlyingSettlPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSettlPrice getUnderlyingSettlPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSettlPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSettlPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSettlPrice() {
+ return isSetField(732);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.AssignmentMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.AssignmentMethod get(quickfix.field.AssignmentMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AssignmentMethod getAssignmentMethod() throws FieldNotFound {
+ return get(new quickfix.field.AssignmentMethod());
+ }
+
+ public boolean isSet(quickfix.field.AssignmentMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAssignmentMethod() {
+ return isSetField(744);
+ }
+
+ public void set(quickfix.field.AssignmentUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.AssignmentUnit get(quickfix.field.AssignmentUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AssignmentUnit getAssignmentUnit() throws FieldNotFound {
+ return get(new quickfix.field.AssignmentUnit());
+ }
+
+ public boolean isSet(quickfix.field.AssignmentUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAssignmentUnit() {
+ return isSetField(745);
+ }
+
+ public void set(quickfix.field.OpenInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenInterest get(quickfix.field.OpenInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenInterest getOpenInterest() throws FieldNotFound {
+ return get(new quickfix.field.OpenInterest());
+ }
+
+ public boolean isSet(quickfix.field.OpenInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenInterest() {
+ return isSetField(746);
+ }
+
+ public void set(quickfix.field.ExerciseMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExerciseMethod get(quickfix.field.ExerciseMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExerciseMethod getExerciseMethod() throws FieldNotFound {
+ return get(new quickfix.field.ExerciseMethod());
+ }
+
+ public boolean isSet(quickfix.field.ExerciseMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExerciseMethod() {
+ return isSetField(747);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BidRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BidRequest.java
new file mode 100644
index 000000000..95bf5dfa0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BidRequest.java
@@ -0,0 +1,1082 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class BidRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "k";
+
+
+ public BidRequest() {
+
+ super(new int[] {390, 391, 374, 392, 393, 394, 395, 15, 396, 397, 398, 420, 409, 410, 411, 412, 413, 414, 415, 416, 121, 417, 75, 418, 419, 443, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public BidRequest(quickfix.field.ClientBidID clientBidID, quickfix.field.BidRequestTransType bidRequestTransType, quickfix.field.TotNoRelatedSym totNoRelatedSym, quickfix.field.BidType bidType, quickfix.field.BidTradeType bidTradeType, quickfix.field.BasisPxType basisPxType) {
+ this();
+ setField(clientBidID);
+ setField(bidRequestTransType);
+ setField(totNoRelatedSym);
+ setField(bidType);
+ setField(bidTradeType);
+ setField(basisPxType);
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.BidRequestTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidRequestTransType get(quickfix.field.BidRequestTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidRequestTransType getBidRequestTransType() throws FieldNotFound {
+ return get(new quickfix.field.BidRequestTransType());
+ }
+
+ public boolean isSet(quickfix.field.BidRequestTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidRequestTransType() {
+ return isSetField(374);
+ }
+
+ public void set(quickfix.field.ListName value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListName get(quickfix.field.ListName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListName getListName() throws FieldNotFound {
+ return get(new quickfix.field.ListName());
+ }
+
+ public boolean isSet(quickfix.field.ListName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListName() {
+ return isSetField(392);
+ }
+
+ public void set(quickfix.field.TotNoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoRelatedSym get(quickfix.field.TotNoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoRelatedSym getTotNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.TotNoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.TotNoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoRelatedSym() {
+ return isSetField(393);
+ }
+
+ public void set(quickfix.field.BidType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidType get(quickfix.field.BidType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidType getBidType() throws FieldNotFound {
+ return get(new quickfix.field.BidType());
+ }
+
+ public boolean isSet(quickfix.field.BidType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidType() {
+ return isSetField(394);
+ }
+
+ public void set(quickfix.field.NumTickets value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumTickets get(quickfix.field.NumTickets value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumTickets getNumTickets() throws FieldNotFound {
+ return get(new quickfix.field.NumTickets());
+ }
+
+ public boolean isSet(quickfix.field.NumTickets field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumTickets() {
+ return isSetField(395);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.SideValue1 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValue1 get(quickfix.field.SideValue1 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValue1 getSideValue1() throws FieldNotFound {
+ return get(new quickfix.field.SideValue1());
+ }
+
+ public boolean isSet(quickfix.field.SideValue1 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValue1() {
+ return isSetField(396);
+ }
+
+ public void set(quickfix.field.SideValue2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValue2 get(quickfix.field.SideValue2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValue2 getSideValue2() throws FieldNotFound {
+ return get(new quickfix.field.SideValue2());
+ }
+
+ public boolean isSet(quickfix.field.SideValue2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValue2() {
+ return isSetField(397);
+ }
+
+ public void set(quickfix.field.NoBidDescriptors value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoBidDescriptors get(quickfix.field.NoBidDescriptors value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoBidDescriptors getNoBidDescriptors() throws FieldNotFound {
+ return get(new quickfix.field.NoBidDescriptors());
+ }
+
+ public boolean isSet(quickfix.field.NoBidDescriptors field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoBidDescriptors() {
+ return isSetField(398);
+ }
+
+ public static class NoBidDescriptors extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {399, 400, 401, 404, 441, 402, 403, 405, 406, 407, 408, 0};
+
+ public NoBidDescriptors() {
+ super(398, 399, ORDER);
+ }
+
+ public void set(quickfix.field.BidDescriptorType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidDescriptorType get(quickfix.field.BidDescriptorType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidDescriptorType getBidDescriptorType() throws FieldNotFound {
+ return get(new quickfix.field.BidDescriptorType());
+ }
+
+ public boolean isSet(quickfix.field.BidDescriptorType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidDescriptorType() {
+ return isSetField(399);
+ }
+
+ public void set(quickfix.field.BidDescriptor value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidDescriptor get(quickfix.field.BidDescriptor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidDescriptor getBidDescriptor() throws FieldNotFound {
+ return get(new quickfix.field.BidDescriptor());
+ }
+
+ public boolean isSet(quickfix.field.BidDescriptor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidDescriptor() {
+ return isSetField(400);
+ }
+
+ public void set(quickfix.field.SideValueInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValueInd get(quickfix.field.SideValueInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValueInd getSideValueInd() throws FieldNotFound {
+ return get(new quickfix.field.SideValueInd());
+ }
+
+ public boolean isSet(quickfix.field.SideValueInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValueInd() {
+ return isSetField(401);
+ }
+
+ public void set(quickfix.field.LiquidityValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityValue get(quickfix.field.LiquidityValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityValue getLiquidityValue() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityValue());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityValue() {
+ return isSetField(404);
+ }
+
+ public void set(quickfix.field.LiquidityNumSecurities value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityNumSecurities get(quickfix.field.LiquidityNumSecurities value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityNumSecurities getLiquidityNumSecurities() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityNumSecurities());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityNumSecurities field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityNumSecurities() {
+ return isSetField(441);
+ }
+
+ public void set(quickfix.field.LiquidityPctLow value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityPctLow get(quickfix.field.LiquidityPctLow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityPctLow getLiquidityPctLow() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityPctLow());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityPctLow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityPctLow() {
+ return isSetField(402);
+ }
+
+ public void set(quickfix.field.LiquidityPctHigh value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityPctHigh get(quickfix.field.LiquidityPctHigh value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityPctHigh getLiquidityPctHigh() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityPctHigh());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityPctHigh field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityPctHigh() {
+ return isSetField(403);
+ }
+
+ public void set(quickfix.field.EFPTrackingError value) {
+ setField(value);
+ }
+
+ public quickfix.field.EFPTrackingError get(quickfix.field.EFPTrackingError value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EFPTrackingError getEFPTrackingError() throws FieldNotFound {
+ return get(new quickfix.field.EFPTrackingError());
+ }
+
+ public boolean isSet(quickfix.field.EFPTrackingError field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEFPTrackingError() {
+ return isSetField(405);
+ }
+
+ public void set(quickfix.field.FairValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.FairValue get(quickfix.field.FairValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FairValue getFairValue() throws FieldNotFound {
+ return get(new quickfix.field.FairValue());
+ }
+
+ public boolean isSet(quickfix.field.FairValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFairValue() {
+ return isSetField(406);
+ }
+
+ public void set(quickfix.field.OutsideIndexPct value) {
+ setField(value);
+ }
+
+ public quickfix.field.OutsideIndexPct get(quickfix.field.OutsideIndexPct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OutsideIndexPct getOutsideIndexPct() throws FieldNotFound {
+ return get(new quickfix.field.OutsideIndexPct());
+ }
+
+ public boolean isSet(quickfix.field.OutsideIndexPct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOutsideIndexPct() {
+ return isSetField(407);
+ }
+
+ public void set(quickfix.field.ValueOfFutures value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValueOfFutures get(quickfix.field.ValueOfFutures value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValueOfFutures getValueOfFutures() throws FieldNotFound {
+ return get(new quickfix.field.ValueOfFutures());
+ }
+
+ public boolean isSet(quickfix.field.ValueOfFutures field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValueOfFutures() {
+ return isSetField(408);
+ }
+
+ }
+
+ public void set(quickfix.field.NoBidComponents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoBidComponents get(quickfix.field.NoBidComponents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoBidComponents getNoBidComponents() throws FieldNotFound {
+ return get(new quickfix.field.NoBidComponents());
+ }
+
+ public boolean isSet(quickfix.field.NoBidComponents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoBidComponents() {
+ return isSetField(420);
+ }
+
+ public static class NoBidComponents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {66, 54, 336, 625, 430, 63, 64, 1, 660, 0};
+
+ public NoBidComponents() {
+ super(420, 66, ORDER);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.NetGrossInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetGrossInd get(quickfix.field.NetGrossInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetGrossInd getNetGrossInd() throws FieldNotFound {
+ return get(new quickfix.field.NetGrossInd());
+ }
+
+ public boolean isSet(quickfix.field.NetGrossInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetGrossInd() {
+ return isSetField(430);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ }
+
+ public void set(quickfix.field.LiquidityIndType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LiquidityIndType get(quickfix.field.LiquidityIndType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LiquidityIndType getLiquidityIndType() throws FieldNotFound {
+ return get(new quickfix.field.LiquidityIndType());
+ }
+
+ public boolean isSet(quickfix.field.LiquidityIndType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLiquidityIndType() {
+ return isSetField(409);
+ }
+
+ public void set(quickfix.field.WtAverageLiquidity value) {
+ setField(value);
+ }
+
+ public quickfix.field.WtAverageLiquidity get(quickfix.field.WtAverageLiquidity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.WtAverageLiquidity getWtAverageLiquidity() throws FieldNotFound {
+ return get(new quickfix.field.WtAverageLiquidity());
+ }
+
+ public boolean isSet(quickfix.field.WtAverageLiquidity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetWtAverageLiquidity() {
+ return isSetField(410);
+ }
+
+ public void set(quickfix.field.ExchangeForPhysical value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExchangeForPhysical get(quickfix.field.ExchangeForPhysical value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExchangeForPhysical getExchangeForPhysical() throws FieldNotFound {
+ return get(new quickfix.field.ExchangeForPhysical());
+ }
+
+ public boolean isSet(quickfix.field.ExchangeForPhysical field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExchangeForPhysical() {
+ return isSetField(411);
+ }
+
+ public void set(quickfix.field.OutMainCntryUIndex value) {
+ setField(value);
+ }
+
+ public quickfix.field.OutMainCntryUIndex get(quickfix.field.OutMainCntryUIndex value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OutMainCntryUIndex getOutMainCntryUIndex() throws FieldNotFound {
+ return get(new quickfix.field.OutMainCntryUIndex());
+ }
+
+ public boolean isSet(quickfix.field.OutMainCntryUIndex field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOutMainCntryUIndex() {
+ return isSetField(412);
+ }
+
+ public void set(quickfix.field.CrossPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossPercent get(quickfix.field.CrossPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossPercent getCrossPercent() throws FieldNotFound {
+ return get(new quickfix.field.CrossPercent());
+ }
+
+ public boolean isSet(quickfix.field.CrossPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossPercent() {
+ return isSetField(413);
+ }
+
+ public void set(quickfix.field.ProgRptReqs value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgRptReqs get(quickfix.field.ProgRptReqs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgRptReqs getProgRptReqs() throws FieldNotFound {
+ return get(new quickfix.field.ProgRptReqs());
+ }
+
+ public boolean isSet(quickfix.field.ProgRptReqs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgRptReqs() {
+ return isSetField(414);
+ }
+
+ public void set(quickfix.field.ProgPeriodInterval value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgPeriodInterval get(quickfix.field.ProgPeriodInterval value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgPeriodInterval getProgPeriodInterval() throws FieldNotFound {
+ return get(new quickfix.field.ProgPeriodInterval());
+ }
+
+ public boolean isSet(quickfix.field.ProgPeriodInterval field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgPeriodInterval() {
+ return isSetField(415);
+ }
+
+ public void set(quickfix.field.IncTaxInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.IncTaxInd get(quickfix.field.IncTaxInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IncTaxInd getIncTaxInd() throws FieldNotFound {
+ return get(new quickfix.field.IncTaxInd());
+ }
+
+ public boolean isSet(quickfix.field.IncTaxInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIncTaxInd() {
+ return isSetField(416);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.NumBidders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumBidders get(quickfix.field.NumBidders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumBidders getNumBidders() throws FieldNotFound {
+ return get(new quickfix.field.NumBidders());
+ }
+
+ public boolean isSet(quickfix.field.NumBidders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumBidders() {
+ return isSetField(417);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.BidTradeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidTradeType get(quickfix.field.BidTradeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidTradeType getBidTradeType() throws FieldNotFound {
+ return get(new quickfix.field.BidTradeType());
+ }
+
+ public boolean isSet(quickfix.field.BidTradeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidTradeType() {
+ return isSetField(418);
+ }
+
+ public void set(quickfix.field.BasisPxType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BasisPxType get(quickfix.field.BasisPxType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BasisPxType getBasisPxType() throws FieldNotFound {
+ return get(new quickfix.field.BasisPxType());
+ }
+
+ public boolean isSet(quickfix.field.BasisPxType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBasisPxType() {
+ return isSetField(419);
+ }
+
+ public void set(quickfix.field.StrikeTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeTime get(quickfix.field.StrikeTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeTime getStrikeTime() throws FieldNotFound {
+ return get(new quickfix.field.StrikeTime());
+ }
+
+ public boolean isSet(quickfix.field.StrikeTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeTime() {
+ return isSetField(443);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BidResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BidResponse.java
new file mode 100644
index 000000000..1514c472c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BidResponse.java
@@ -0,0 +1,486 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class BidResponse extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "l";
+
+
+ public BidResponse() {
+
+ super(new int[] {390, 391, 420, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.NoBidComponents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoBidComponents get(quickfix.field.NoBidComponents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoBidComponents getNoBidComponents() throws FieldNotFound {
+ return get(new quickfix.field.NoBidComponents());
+ }
+
+ public boolean isSet(quickfix.field.NoBidComponents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoBidComponents() {
+ return isSetField(420);
+ }
+
+ public static class NoBidComponents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {12, 13, 479, 497, 66, 421, 54, 44, 423, 406, 430, 63, 64, 336, 625, 58, 354, 355, 0};
+
+ public NoBidComponents() {
+ super(420, 12, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Country value) {
+ setField(value);
+ }
+
+ public quickfix.field.Country get(quickfix.field.Country value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Country getCountry() throws FieldNotFound {
+ return get(new quickfix.field.Country());
+ }
+
+ public boolean isSet(quickfix.field.Country field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountry() {
+ return isSetField(421);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.FairValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.FairValue get(quickfix.field.FairValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FairValue getFairValue() throws FieldNotFound {
+ return get(new quickfix.field.FairValue());
+ }
+
+ public boolean isSet(quickfix.field.FairValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFairValue() {
+ return isSetField(406);
+ }
+
+ public void set(quickfix.field.NetGrossInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetGrossInd get(quickfix.field.NetGrossInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetGrossInd getNetGrossInd() throws FieldNotFound {
+ return get(new quickfix.field.NetGrossInd());
+ }
+
+ public boolean isSet(quickfix.field.NetGrossInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetGrossInd() {
+ return isSetField(430);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BusinessMessageReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BusinessMessageReject.java
new file mode 100644
index 000000000..4fcc9fb4a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/BusinessMessageReject.java
@@ -0,0 +1,173 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class BusinessMessageReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "j";
+
+
+ public BusinessMessageReject() {
+
+ super(new int[] {45, 372, 379, 380, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public BusinessMessageReject(quickfix.field.RefMsgType refMsgType, quickfix.field.BusinessRejectReason businessRejectReason) {
+ this();
+ setField(refMsgType);
+ setField(businessRejectReason);
+ }
+
+ public void set(quickfix.field.RefSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefSeqNum get(quickfix.field.RefSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefSeqNum getRefSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.RefSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.RefSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefSeqNum() {
+ return isSetField(45);
+ }
+
+ public void set(quickfix.field.RefMsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefMsgType get(quickfix.field.RefMsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefMsgType getRefMsgType() throws FieldNotFound {
+ return get(new quickfix.field.RefMsgType());
+ }
+
+ public boolean isSet(quickfix.field.RefMsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefMsgType() {
+ return isSetField(372);
+ }
+
+ public void set(quickfix.field.BusinessRejectRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BusinessRejectRefID get(quickfix.field.BusinessRejectRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BusinessRejectRefID getBusinessRejectRefID() throws FieldNotFound {
+ return get(new quickfix.field.BusinessRejectRefID());
+ }
+
+ public boolean isSet(quickfix.field.BusinessRejectRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBusinessRejectRefID() {
+ return isSetField(379);
+ }
+
+ public void set(quickfix.field.BusinessRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.BusinessRejectReason get(quickfix.field.BusinessRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BusinessRejectReason getBusinessRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.BusinessRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.BusinessRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBusinessRejectReason() {
+ return isSetField(380);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralAssignment.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralAssignment.java
new file mode 100644
index 000000000..269b26b31
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralAssignment.java
@@ -0,0 +1,5336 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CollateralAssignment extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AY";
+
+
+ public CollateralAssignment() {
+
+ super(new int[] {902, 894, 895, 903, 907, 60, 126, 453, 1, 581, 11, 37, 198, 526, 124, 897, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 64, 53, 854, 15, 555, 711, 899, 900, 901, 768, 54, 136, 44, 423, 159, 920, 921, 922, 218, 220, 221, 222, 662, 663, 699, 761, 232, 172, 169, 170, 171, 85, 336, 625, 716, 717, 715, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CollateralAssignment(quickfix.field.CollAsgnID collAsgnID, quickfix.field.CollAsgnReason collAsgnReason, quickfix.field.CollAsgnTransType collAsgnTransType, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(collAsgnID);
+ setField(collAsgnReason);
+ setField(collAsgnTransType);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.CollAsgnID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnID get(quickfix.field.CollAsgnID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnID getCollAsgnID() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnID());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnID() {
+ return isSetField(902);
+ }
+
+ public void set(quickfix.field.CollReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollReqID get(quickfix.field.CollReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollReqID getCollReqID() throws FieldNotFound {
+ return get(new quickfix.field.CollReqID());
+ }
+
+ public boolean isSet(quickfix.field.CollReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollReqID() {
+ return isSetField(894);
+ }
+
+ public void set(quickfix.field.CollAsgnReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnReason get(quickfix.field.CollAsgnReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnReason getCollAsgnReason() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnReason());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnReason() {
+ return isSetField(895);
+ }
+
+ public void set(quickfix.field.CollAsgnTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnTransType get(quickfix.field.CollAsgnTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnTransType getCollAsgnTransType() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnTransType());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnTransType() {
+ return isSetField(903);
+ }
+
+ public void set(quickfix.field.CollAsgnRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnRefID get(quickfix.field.CollAsgnRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnRefID getCollAsgnRefID() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnRefID());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnRefID() {
+ return isSetField(907);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {17, 0};
+
+ public NoExecs() {
+ super(124, 17, ORDER);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ }
+
+ public void set(quickfix.field.NoTrades value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
+ return get(new quickfix.field.NoTrades());
+ }
+
+ public boolean isSet(quickfix.field.NoTrades field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrades() {
+ return isSetField(897);
+ }
+
+ public static class NoTrades extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {571, 818, 0};
+
+ public NoTrades() {
+ super(897, 571, ORDER);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 944, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.CollAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAction get(quickfix.field.CollAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAction getCollAction() throws FieldNotFound {
+ return get(new quickfix.field.CollAction());
+ }
+
+ public boolean isSet(quickfix.field.CollAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAction() {
+ return isSetField(944);
+ }
+
+ }
+
+ public void set(quickfix.field.MarginExcess value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginExcess get(quickfix.field.MarginExcess value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginExcess getMarginExcess() throws FieldNotFound {
+ return get(new quickfix.field.MarginExcess());
+ }
+
+ public boolean isSet(quickfix.field.MarginExcess field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginExcess() {
+ return isSetField(899);
+ }
+
+ public void set(quickfix.field.TotalNetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNetValue get(quickfix.field.TotalNetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNetValue getTotalNetValue() throws FieldNotFound {
+ return get(new quickfix.field.TotalNetValue());
+ }
+
+ public boolean isSet(quickfix.field.TotalNetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNetValue() {
+ return isSetField(900);
+ }
+
+ public void set(quickfix.field.CashOutstanding value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOutstanding get(quickfix.field.CashOutstanding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOutstanding getCashOutstanding() throws FieldNotFound {
+ return get(new quickfix.field.CashOutstanding());
+ }
+
+ public boolean isSet(quickfix.field.CashOutstanding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOutstanding() {
+ return isSetField(901);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralInquiry.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralInquiry.java
new file mode 100644
index 000000000..e52aa53c0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralInquiry.java
@@ -0,0 +1,5181 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CollateralInquiry extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "BB";
+
+
+ public CollateralInquiry() {
+
+ super(new int[] {909, 938, 263, 725, 726, 453, 1, 581, 11, 37, 198, 526, 124, 897, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 64, 53, 854, 15, 555, 711, 899, 900, 901, 768, 54, 44, 423, 159, 920, 921, 922, 218, 220, 221, 222, 662, 663, 699, 761, 232, 172, 169, 170, 171, 85, 336, 625, 716, 717, 715, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.CollInquiryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryID get(quickfix.field.CollInquiryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryID getCollInquiryID() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryID());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryID() {
+ return isSetField(909);
+ }
+
+ public void set(quickfix.field.NoCollInquiryQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoCollInquiryQualifier get(quickfix.field.NoCollInquiryQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoCollInquiryQualifier getNoCollInquiryQualifier() throws FieldNotFound {
+ return get(new quickfix.field.NoCollInquiryQualifier());
+ }
+
+ public boolean isSet(quickfix.field.NoCollInquiryQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoCollInquiryQualifier() {
+ return isSetField(938);
+ }
+
+ public static class NoCollInquiryQualifier extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {896, 0};
+
+ public NoCollInquiryQualifier() {
+ super(938, 896, ORDER);
+ }
+
+ public void set(quickfix.field.CollInquiryQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryQualifier get(quickfix.field.CollInquiryQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryQualifier getCollInquiryQualifier() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryQualifier());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryQualifier() {
+ return isSetField(896);
+ }
+
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.ResponseTransportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseTransportType get(quickfix.field.ResponseTransportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseTransportType getResponseTransportType() throws FieldNotFound {
+ return get(new quickfix.field.ResponseTransportType());
+ }
+
+ public boolean isSet(quickfix.field.ResponseTransportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseTransportType() {
+ return isSetField(725);
+ }
+
+ public void set(quickfix.field.ResponseDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseDestination get(quickfix.field.ResponseDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseDestination getResponseDestination() throws FieldNotFound {
+ return get(new quickfix.field.ResponseDestination());
+ }
+
+ public boolean isSet(quickfix.field.ResponseDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseDestination() {
+ return isSetField(726);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {17, 0};
+
+ public NoExecs() {
+ super(124, 17, ORDER);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ }
+
+ public void set(quickfix.field.NoTrades value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
+ return get(new quickfix.field.NoTrades());
+ }
+
+ public boolean isSet(quickfix.field.NoTrades field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrades() {
+ return isSetField(897);
+ }
+
+ public static class NoTrades extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {571, 818, 0};
+
+ public NoTrades() {
+ super(897, 571, ORDER);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.MarginExcess value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginExcess get(quickfix.field.MarginExcess value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginExcess getMarginExcess() throws FieldNotFound {
+ return get(new quickfix.field.MarginExcess());
+ }
+
+ public boolean isSet(quickfix.field.MarginExcess field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginExcess() {
+ return isSetField(899);
+ }
+
+ public void set(quickfix.field.TotalNetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNetValue get(quickfix.field.TotalNetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNetValue getTotalNetValue() throws FieldNotFound {
+ return get(new quickfix.field.TotalNetValue());
+ }
+
+ public boolean isSet(quickfix.field.TotalNetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNetValue() {
+ return isSetField(900);
+ }
+
+ public void set(quickfix.field.CashOutstanding value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOutstanding get(quickfix.field.CashOutstanding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOutstanding getCashOutstanding() throws FieldNotFound {
+ return get(new quickfix.field.CashOutstanding());
+ }
+
+ public boolean isSet(quickfix.field.CashOutstanding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOutstanding() {
+ return isSetField(901);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralInquiryAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralInquiryAck.java
new file mode 100644
index 000000000..129293956
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralInquiryAck.java
@@ -0,0 +1,4290 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CollateralInquiryAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "BG";
+
+
+ public CollateralInquiryAck() {
+
+ super(new int[] {909, 945, 946, 938, 911, 453, 1, 581, 11, 37, 198, 526, 124, 897, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 64, 53, 854, 15, 555, 711, 336, 625, 716, 717, 715, 725, 726, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CollateralInquiryAck(quickfix.field.CollInquiryID collInquiryID, quickfix.field.CollInquiryStatus collInquiryStatus) {
+ this();
+ setField(collInquiryID);
+ setField(collInquiryStatus);
+ }
+
+ public void set(quickfix.field.CollInquiryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryID get(quickfix.field.CollInquiryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryID getCollInquiryID() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryID());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryID() {
+ return isSetField(909);
+ }
+
+ public void set(quickfix.field.CollInquiryStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryStatus get(quickfix.field.CollInquiryStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryStatus getCollInquiryStatus() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryStatus());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryStatus() {
+ return isSetField(945);
+ }
+
+ public void set(quickfix.field.CollInquiryResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryResult get(quickfix.field.CollInquiryResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryResult getCollInquiryResult() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryResult());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryResult() {
+ return isSetField(946);
+ }
+
+ public void set(quickfix.field.NoCollInquiryQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoCollInquiryQualifier get(quickfix.field.NoCollInquiryQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoCollInquiryQualifier getNoCollInquiryQualifier() throws FieldNotFound {
+ return get(new quickfix.field.NoCollInquiryQualifier());
+ }
+
+ public boolean isSet(quickfix.field.NoCollInquiryQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoCollInquiryQualifier() {
+ return isSetField(938);
+ }
+
+ public static class NoCollInquiryQualifier extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {896, 0};
+
+ public NoCollInquiryQualifier() {
+ super(938, 896, ORDER);
+ }
+
+ public void set(quickfix.field.CollInquiryQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryQualifier get(quickfix.field.CollInquiryQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryQualifier getCollInquiryQualifier() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryQualifier());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryQualifier() {
+ return isSetField(896);
+ }
+
+ }
+
+ public void set(quickfix.field.TotNumReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNumReports get(quickfix.field.TotNumReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNumReports getTotNumReports() throws FieldNotFound {
+ return get(new quickfix.field.TotNumReports());
+ }
+
+ public boolean isSet(quickfix.field.TotNumReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNumReports() {
+ return isSetField(911);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {17, 0};
+
+ public NoExecs() {
+ super(124, 17, ORDER);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ }
+
+ public void set(quickfix.field.NoTrades value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
+ return get(new quickfix.field.NoTrades());
+ }
+
+ public boolean isSet(quickfix.field.NoTrades field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrades() {
+ return isSetField(897);
+ }
+
+ public static class NoTrades extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {571, 818, 0};
+
+ public NoTrades() {
+ super(897, 571, ORDER);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.ResponseTransportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseTransportType get(quickfix.field.ResponseTransportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseTransportType getResponseTransportType() throws FieldNotFound {
+ return get(new quickfix.field.ResponseTransportType());
+ }
+
+ public boolean isSet(quickfix.field.ResponseTransportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseTransportType() {
+ return isSetField(725);
+ }
+
+ public void set(quickfix.field.ResponseDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseDestination get(quickfix.field.ResponseDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseDestination getResponseDestination() throws FieldNotFound {
+ return get(new quickfix.field.ResponseDestination());
+ }
+
+ public boolean isSet(quickfix.field.ResponseDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseDestination() {
+ return isSetField(726);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralReport.java
new file mode 100644
index 000000000..f1d0b997a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralReport.java
@@ -0,0 +1,5271 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CollateralReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "BA";
+
+
+ public CollateralReport() {
+
+ super(new int[] {908, 909, 910, 911, 912, 453, 1, 581, 11, 37, 198, 526, 124, 897, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 64, 53, 854, 15, 555, 711, 899, 900, 901, 768, 54, 136, 44, 423, 159, 920, 921, 922, 218, 220, 221, 222, 662, 663, 699, 761, 232, 172, 169, 170, 171, 85, 336, 625, 716, 717, 715, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CollateralReport(quickfix.field.CollRptID collRptID, quickfix.field.CollStatus collStatus) {
+ this();
+ setField(collRptID);
+ setField(collStatus);
+ }
+
+ public void set(quickfix.field.CollRptID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollRptID get(quickfix.field.CollRptID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollRptID getCollRptID() throws FieldNotFound {
+ return get(new quickfix.field.CollRptID());
+ }
+
+ public boolean isSet(quickfix.field.CollRptID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollRptID() {
+ return isSetField(908);
+ }
+
+ public void set(quickfix.field.CollInquiryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollInquiryID get(quickfix.field.CollInquiryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollInquiryID getCollInquiryID() throws FieldNotFound {
+ return get(new quickfix.field.CollInquiryID());
+ }
+
+ public boolean isSet(quickfix.field.CollInquiryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollInquiryID() {
+ return isSetField(909);
+ }
+
+ public void set(quickfix.field.CollStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollStatus get(quickfix.field.CollStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollStatus getCollStatus() throws FieldNotFound {
+ return get(new quickfix.field.CollStatus());
+ }
+
+ public boolean isSet(quickfix.field.CollStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollStatus() {
+ return isSetField(910);
+ }
+
+ public void set(quickfix.field.TotNumReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNumReports get(quickfix.field.TotNumReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNumReports getTotNumReports() throws FieldNotFound {
+ return get(new quickfix.field.TotNumReports());
+ }
+
+ public boolean isSet(quickfix.field.TotNumReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNumReports() {
+ return isSetField(911);
+ }
+
+ public void set(quickfix.field.LastRptRequested value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastRptRequested get(quickfix.field.LastRptRequested value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastRptRequested getLastRptRequested() throws FieldNotFound {
+ return get(new quickfix.field.LastRptRequested());
+ }
+
+ public boolean isSet(quickfix.field.LastRptRequested field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastRptRequested() {
+ return isSetField(912);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {17, 0};
+
+ public NoExecs() {
+ super(124, 17, ORDER);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ }
+
+ public void set(quickfix.field.NoTrades value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
+ return get(new quickfix.field.NoTrades());
+ }
+
+ public boolean isSet(quickfix.field.NoTrades field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrades() {
+ return isSetField(897);
+ }
+
+ public static class NoTrades extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {571, 818, 0};
+
+ public NoTrades() {
+ super(897, 571, ORDER);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.MarginExcess value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginExcess get(quickfix.field.MarginExcess value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginExcess getMarginExcess() throws FieldNotFound {
+ return get(new quickfix.field.MarginExcess());
+ }
+
+ public boolean isSet(quickfix.field.MarginExcess field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginExcess() {
+ return isSetField(899);
+ }
+
+ public void set(quickfix.field.TotalNetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNetValue get(quickfix.field.TotalNetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNetValue getTotalNetValue() throws FieldNotFound {
+ return get(new quickfix.field.TotalNetValue());
+ }
+
+ public boolean isSet(quickfix.field.TotalNetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNetValue() {
+ return isSetField(900);
+ }
+
+ public void set(quickfix.field.CashOutstanding value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOutstanding get(quickfix.field.CashOutstanding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOutstanding getCashOutstanding() throws FieldNotFound {
+ return get(new quickfix.field.CashOutstanding());
+ }
+
+ public boolean isSet(quickfix.field.CashOutstanding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOutstanding() {
+ return isSetField(901);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralRequest.java
new file mode 100644
index 000000000..231056185
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralRequest.java
@@ -0,0 +1,4919 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CollateralRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AX";
+
+
+ public CollateralRequest() {
+
+ super(new int[] {894, 895, 60, 126, 453, 1, 581, 11, 37, 198, 526, 124, 897, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 64, 53, 854, 15, 555, 711, 899, 900, 901, 768, 54, 136, 44, 423, 159, 920, 921, 922, 218, 220, 221, 222, 662, 663, 699, 761, 232, 336, 625, 716, 717, 715, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CollateralRequest(quickfix.field.CollReqID collReqID, quickfix.field.CollAsgnReason collAsgnReason, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(collReqID);
+ setField(collAsgnReason);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.CollReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollReqID get(quickfix.field.CollReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollReqID getCollReqID() throws FieldNotFound {
+ return get(new quickfix.field.CollReqID());
+ }
+
+ public boolean isSet(quickfix.field.CollReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollReqID() {
+ return isSetField(894);
+ }
+
+ public void set(quickfix.field.CollAsgnReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnReason get(quickfix.field.CollAsgnReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnReason getCollAsgnReason() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnReason());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnReason() {
+ return isSetField(895);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {17, 0};
+
+ public NoExecs() {
+ super(124, 17, ORDER);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ }
+
+ public void set(quickfix.field.NoTrades value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
+ return get(new quickfix.field.NoTrades());
+ }
+
+ public boolean isSet(quickfix.field.NoTrades field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrades() {
+ return isSetField(897);
+ }
+
+ public static class NoTrades extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {571, 818, 0};
+
+ public NoTrades() {
+ super(897, 571, ORDER);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 944, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.CollAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAction get(quickfix.field.CollAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAction getCollAction() throws FieldNotFound {
+ return get(new quickfix.field.CollAction());
+ }
+
+ public boolean isSet(quickfix.field.CollAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAction() {
+ return isSetField(944);
+ }
+
+ }
+
+ public void set(quickfix.field.MarginExcess value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginExcess get(quickfix.field.MarginExcess value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginExcess getMarginExcess() throws FieldNotFound {
+ return get(new quickfix.field.MarginExcess());
+ }
+
+ public boolean isSet(quickfix.field.MarginExcess field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginExcess() {
+ return isSetField(899);
+ }
+
+ public void set(quickfix.field.TotalNetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNetValue get(quickfix.field.TotalNetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNetValue getTotalNetValue() throws FieldNotFound {
+ return get(new quickfix.field.TotalNetValue());
+ }
+
+ public boolean isSet(quickfix.field.TotalNetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNetValue() {
+ return isSetField(900);
+ }
+
+ public void set(quickfix.field.CashOutstanding value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOutstanding get(quickfix.field.CashOutstanding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOutstanding getCashOutstanding() throws FieldNotFound {
+ return get(new quickfix.field.CashOutstanding());
+ }
+
+ public boolean isSet(quickfix.field.CashOutstanding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOutstanding() {
+ return isSetField(901);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralResponse.java
new file mode 100644
index 000000000..8716dc726
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CollateralResponse.java
@@ -0,0 +1,4900 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CollateralResponse extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AZ";
+
+
+ public CollateralResponse() {
+
+ super(new int[] {904, 902, 894, 895, 903, 905, 906, 60, 453, 1, 581, 11, 37, 198, 526, 124, 897, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 64, 53, 854, 15, 555, 711, 899, 900, 901, 768, 54, 136, 44, 423, 159, 920, 921, 922, 218, 220, 221, 222, 662, 663, 699, 761, 232, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CollateralResponse(quickfix.field.CollRespID collRespID, quickfix.field.CollAsgnID collAsgnID, quickfix.field.CollAsgnReason collAsgnReason, quickfix.field.CollAsgnRespType collAsgnRespType, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(collRespID);
+ setField(collAsgnID);
+ setField(collAsgnReason);
+ setField(collAsgnRespType);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.CollRespID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollRespID get(quickfix.field.CollRespID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollRespID getCollRespID() throws FieldNotFound {
+ return get(new quickfix.field.CollRespID());
+ }
+
+ public boolean isSet(quickfix.field.CollRespID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollRespID() {
+ return isSetField(904);
+ }
+
+ public void set(quickfix.field.CollAsgnID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnID get(quickfix.field.CollAsgnID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnID getCollAsgnID() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnID());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnID() {
+ return isSetField(902);
+ }
+
+ public void set(quickfix.field.CollReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollReqID get(quickfix.field.CollReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollReqID getCollReqID() throws FieldNotFound {
+ return get(new quickfix.field.CollReqID());
+ }
+
+ public boolean isSet(quickfix.field.CollReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollReqID() {
+ return isSetField(894);
+ }
+
+ public void set(quickfix.field.CollAsgnReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnReason get(quickfix.field.CollAsgnReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnReason getCollAsgnReason() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnReason());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnReason() {
+ return isSetField(895);
+ }
+
+ public void set(quickfix.field.CollAsgnTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnTransType get(quickfix.field.CollAsgnTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnTransType getCollAsgnTransType() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnTransType());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnTransType() {
+ return isSetField(903);
+ }
+
+ public void set(quickfix.field.CollAsgnRespType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnRespType get(quickfix.field.CollAsgnRespType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnRespType getCollAsgnRespType() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnRespType());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnRespType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnRespType() {
+ return isSetField(905);
+ }
+
+ public void set(quickfix.field.CollAsgnRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAsgnRejectReason get(quickfix.field.CollAsgnRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAsgnRejectReason getCollAsgnRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.CollAsgnRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.CollAsgnRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAsgnRejectReason() {
+ return isSetField(906);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.NoExecs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoExecs get(quickfix.field.NoExecs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoExecs getNoExecs() throws FieldNotFound {
+ return get(new quickfix.field.NoExecs());
+ }
+
+ public boolean isSet(quickfix.field.NoExecs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoExecs() {
+ return isSetField(124);
+ }
+
+ public static class NoExecs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {17, 0};
+
+ public NoExecs() {
+ super(124, 17, ORDER);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ }
+
+ public void set(quickfix.field.NoTrades value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrades get(quickfix.field.NoTrades value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrades getNoTrades() throws FieldNotFound {
+ return get(new quickfix.field.NoTrades());
+ }
+
+ public boolean isSet(quickfix.field.NoTrades field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrades() {
+ return isSetField(897);
+ }
+
+ public static class NoTrades extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {571, 818, 0};
+
+ public NoTrades() {
+ super(897, 571, ORDER);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.Quantity value) {
+ setField(value);
+ }
+
+ public quickfix.field.Quantity get(quickfix.field.Quantity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Quantity getQuantity() throws FieldNotFound {
+ return get(new quickfix.field.Quantity());
+ }
+
+ public boolean isSet(quickfix.field.Quantity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuantity() {
+ return isSetField(53);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 944, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.CollAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CollAction get(quickfix.field.CollAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CollAction getCollAction() throws FieldNotFound {
+ return get(new quickfix.field.CollAction());
+ }
+
+ public boolean isSet(quickfix.field.CollAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCollAction() {
+ return isSetField(944);
+ }
+
+ }
+
+ public void set(quickfix.field.MarginExcess value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginExcess get(quickfix.field.MarginExcess value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginExcess getMarginExcess() throws FieldNotFound {
+ return get(new quickfix.field.MarginExcess());
+ }
+
+ public boolean isSet(quickfix.field.MarginExcess field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginExcess() {
+ return isSetField(899);
+ }
+
+ public void set(quickfix.field.TotalNetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNetValue get(quickfix.field.TotalNetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNetValue getTotalNetValue() throws FieldNotFound {
+ return get(new quickfix.field.TotalNetValue());
+ }
+
+ public boolean isSet(quickfix.field.TotalNetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNetValue() {
+ return isSetField(900);
+ }
+
+ public void set(quickfix.field.CashOutstanding value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOutstanding get(quickfix.field.CashOutstanding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOutstanding getCashOutstanding() throws FieldNotFound {
+ return get(new quickfix.field.CashOutstanding());
+ }
+
+ public boolean isSet(quickfix.field.CashOutstanding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOutstanding() {
+ return isSetField(901);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Confirmation.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Confirmation.java
new file mode 100644
index 000000000..23ad74771
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Confirmation.java
@@ -0,0 +1,6353 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Confirmation extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AK";
+
+
+ public Confirmation() {
+
+ super(new int[] {664, 772, 859, 666, 773, 797, 650, 665, 453, 73, 70, 793, 467, 60, 75, 768, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 235, 236, 701, 696, 697, 698, 80, 854, 54, 15, 30, 862, 79, 661, 798, 6, 74, 423, 860, 218, 220, 221, 222, 662, 663, 699, 761, 861, 58, 354, 355, 81, 381, 157, 230, 158, 159, 738, 920, 921, 922, 238, 237, 118, 890, 119, 120, 155, 156, 63, 64, 172, 169, 170, 171, 85, 12, 13, 479, 497, 858, 232, 136, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Confirmation(quickfix.field.ConfirmID confirmID, quickfix.field.ConfirmTransType confirmTransType, quickfix.field.ConfirmType confirmType, quickfix.field.ConfirmStatus confirmStatus, quickfix.field.TransactTime transactTime, quickfix.field.TradeDate tradeDate, quickfix.field.AllocQty allocQty, quickfix.field.Side side, quickfix.field.AllocAccount allocAccount, quickfix.field.AvgPx avgPx, quickfix.field.GrossTradeAmt grossTradeAmt, quickfix.field.NetMoney netMoney) {
+ this();
+ setField(confirmID);
+ setField(confirmTransType);
+ setField(confirmType);
+ setField(confirmStatus);
+ setField(transactTime);
+ setField(tradeDate);
+ setField(allocQty);
+ setField(side);
+ setField(allocAccount);
+ setField(avgPx);
+ setField(grossTradeAmt);
+ setField(netMoney);
+ }
+
+ public void set(quickfix.field.ConfirmID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmID get(quickfix.field.ConfirmID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmID getConfirmID() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmID());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmID() {
+ return isSetField(664);
+ }
+
+ public void set(quickfix.field.ConfirmRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmRefID get(quickfix.field.ConfirmRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmRefID getConfirmRefID() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmRefID());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmRefID() {
+ return isSetField(772);
+ }
+
+ public void set(quickfix.field.ConfirmReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmReqID get(quickfix.field.ConfirmReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmReqID getConfirmReqID() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmReqID());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmReqID() {
+ return isSetField(859);
+ }
+
+ public void set(quickfix.field.ConfirmTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmTransType get(quickfix.field.ConfirmTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmTransType getConfirmTransType() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmTransType());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmTransType() {
+ return isSetField(666);
+ }
+
+ public void set(quickfix.field.ConfirmType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmType get(quickfix.field.ConfirmType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmType getConfirmType() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmType());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmType() {
+ return isSetField(773);
+ }
+
+ public void set(quickfix.field.CopyMsgIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.CopyMsgIndicator get(quickfix.field.CopyMsgIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CopyMsgIndicator getCopyMsgIndicator() throws FieldNotFound {
+ return get(new quickfix.field.CopyMsgIndicator());
+ }
+
+ public boolean isSet(quickfix.field.CopyMsgIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCopyMsgIndicator() {
+ return isSetField(797);
+ }
+
+ public void set(quickfix.field.LegalConfirm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegalConfirm get(quickfix.field.LegalConfirm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegalConfirm getLegalConfirm() throws FieldNotFound {
+ return get(new quickfix.field.LegalConfirm());
+ }
+
+ public boolean isSet(quickfix.field.LegalConfirm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegalConfirm() {
+ return isSetField(650);
+ }
+
+ public void set(quickfix.field.ConfirmStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmStatus get(quickfix.field.ConfirmStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmStatus getConfirmStatus() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmStatus());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmStatus() {
+ return isSetField(665);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 37, 198, 526, 66, 756, 38, 799, 800, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.OrderAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderAvgPx get(quickfix.field.OrderAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderAvgPx getOrderAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.OrderAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.OrderAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderAvgPx() {
+ return isSetField(799);
+ }
+
+ public void set(quickfix.field.OrderBookingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderBookingQty get(quickfix.field.OrderBookingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderBookingQty getOrderBookingQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderBookingQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderBookingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderBookingQty() {
+ return isSetField(800);
+ }
+
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.SecondaryAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryAllocID get(quickfix.field.SecondaryAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryAllocID getSecondaryAllocID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryAllocID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryAllocID() {
+ return isSetField(793);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.NoCapacities value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoCapacities get(quickfix.field.NoCapacities value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoCapacities getNoCapacities() throws FieldNotFound {
+ return get(new quickfix.field.NoCapacities());
+ }
+
+ public boolean isSet(quickfix.field.NoCapacities field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoCapacities() {
+ return isSetField(862);
+ }
+
+ public static class NoCapacities extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {528, 529, 863, 0};
+
+ public NoCapacities() {
+ super(862, 528, ORDER);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.OrderCapacityQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacityQty get(quickfix.field.OrderCapacityQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacityQty getOrderCapacityQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacityQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacityQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacityQty() {
+ return isSetField(863);
+ }
+
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocAccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccountType get(quickfix.field.AllocAccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccountType getAllocAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccountType());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccountType() {
+ return isSetField(798);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.AvgPxPrecision value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPxPrecision get(quickfix.field.AvgPxPrecision value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPxPrecision getAvgPxPrecision() throws FieldNotFound {
+ return get(new quickfix.field.AvgPxPrecision());
+ }
+
+ public boolean isSet(quickfix.field.AvgPxPrecision field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPxPrecision() {
+ return isSetField(74);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.AvgParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgParPx get(quickfix.field.AvgParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgParPx getAvgParPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgParPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgParPx() {
+ return isSetField(860);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.field.ReportedPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.ReportedPx get(quickfix.field.ReportedPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ReportedPx getReportedPx() throws FieldNotFound {
+ return get(new quickfix.field.ReportedPx());
+ }
+
+ public boolean isSet(quickfix.field.ReportedPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetReportedPx() {
+ return isSetField(861);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.NumDaysInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumDaysInterest get(quickfix.field.NumDaysInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumDaysInterest getNumDaysInterest() throws FieldNotFound {
+ return get(new quickfix.field.NumDaysInterest());
+ }
+
+ public boolean isSet(quickfix.field.NumDaysInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumDaysInterest() {
+ return isSetField(157);
+ }
+
+ public void set(quickfix.field.ExDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDate get(quickfix.field.ExDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDate getExDate() throws FieldNotFound {
+ return get(new quickfix.field.ExDate());
+ }
+
+ public boolean isSet(quickfix.field.ExDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDate() {
+ return isSetField(230);
+ }
+
+ public void set(quickfix.field.AccruedInterestRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestRate get(quickfix.field.AccruedInterestRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestRate getAccruedInterestRate() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestRate());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestRate() {
+ return isSetField(158);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.InterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAtMaturity get(quickfix.field.InterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAtMaturity getInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.InterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.InterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAtMaturity() {
+ return isSetField(738);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.field.Concession value) {
+ setField(value);
+ }
+
+ public quickfix.field.Concession get(quickfix.field.Concession value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Concession getConcession() throws FieldNotFound {
+ return get(new quickfix.field.Concession());
+ }
+
+ public boolean isSet(quickfix.field.Concession field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConcession() {
+ return isSetField(238);
+ }
+
+ public void set(quickfix.field.TotalTakedown value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalTakedown get(quickfix.field.TotalTakedown value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalTakedown getTotalTakedown() throws FieldNotFound {
+ return get(new quickfix.field.TotalTakedown());
+ }
+
+ public boolean isSet(quickfix.field.TotalTakedown field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalTakedown() {
+ return isSetField(237);
+ }
+
+ public void set(quickfix.field.NetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetMoney get(quickfix.field.NetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetMoney getNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.NetMoney());
+ }
+
+ public boolean isSet(quickfix.field.NetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetMoney() {
+ return isSetField(118);
+ }
+
+ public void set(quickfix.field.MaturityNetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityNetMoney get(quickfix.field.MaturityNetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityNetMoney getMaturityNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.MaturityNetMoney());
+ }
+
+ public boolean isSet(quickfix.field.MaturityNetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityNetMoney() {
+ return isSetField(890);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.SharedCommission value) {
+ setField(value);
+ }
+
+ public quickfix.field.SharedCommission get(quickfix.field.SharedCommission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SharedCommission getSharedCommission() throws FieldNotFound {
+ return get(new quickfix.field.SharedCommission());
+ }
+
+ public boolean isSet(quickfix.field.SharedCommission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSharedCommission() {
+ return isSetField(858);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ConfirmationAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ConfirmationAck.java
new file mode 100644
index 000000000..4f9baac02
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ConfirmationAck.java
@@ -0,0 +1,217 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class ConfirmationAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AU";
+
+
+ public ConfirmationAck() {
+
+ super(new int[] {664, 75, 60, 940, 774, 573, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ConfirmationAck(quickfix.field.ConfirmID confirmID, quickfix.field.TradeDate tradeDate, quickfix.field.TransactTime transactTime, quickfix.field.AffirmStatus affirmStatus) {
+ this();
+ setField(confirmID);
+ setField(tradeDate);
+ setField(transactTime);
+ setField(affirmStatus);
+ }
+
+ public void set(quickfix.field.ConfirmID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmID get(quickfix.field.ConfirmID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmID getConfirmID() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmID());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmID() {
+ return isSetField(664);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.AffirmStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.AffirmStatus get(quickfix.field.AffirmStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AffirmStatus getAffirmStatus() throws FieldNotFound {
+ return get(new quickfix.field.AffirmStatus());
+ }
+
+ public boolean isSet(quickfix.field.AffirmStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAffirmStatus() {
+ return isSetField(940);
+ }
+
+ public void set(quickfix.field.ConfirmRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmRejReason get(quickfix.field.ConfirmRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmRejReason getConfirmRejReason() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmRejReason());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmRejReason() {
+ return isSetField(774);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ConfirmationRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ConfirmationRequest.java
new file mode 100644
index 000000000..535f2cd67
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ConfirmationRequest.java
@@ -0,0 +1,662 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ConfirmationRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "BH";
+
+
+ public ConfirmationRequest() {
+
+ super(new int[] {859, 773, 73, 70, 793, 467, 60, 79, 661, 798, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ConfirmationRequest(quickfix.field.ConfirmReqID confirmReqID, quickfix.field.ConfirmType confirmType, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(confirmReqID);
+ setField(confirmType);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.ConfirmReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmReqID get(quickfix.field.ConfirmReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmReqID getConfirmReqID() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmReqID());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmReqID() {
+ return isSetField(859);
+ }
+
+ public void set(quickfix.field.ConfirmType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ConfirmType get(quickfix.field.ConfirmType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ConfirmType getConfirmType() throws FieldNotFound {
+ return get(new quickfix.field.ConfirmType());
+ }
+
+ public boolean isSet(quickfix.field.ConfirmType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConfirmType() {
+ return isSetField(773);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 37, 198, 526, 66, 756, 38, 799, 800, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.OrderAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderAvgPx get(quickfix.field.OrderAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderAvgPx getOrderAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.OrderAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.OrderAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderAvgPx() {
+ return isSetField(799);
+ }
+
+ public void set(quickfix.field.OrderBookingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderBookingQty get(quickfix.field.OrderBookingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderBookingQty getOrderBookingQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderBookingQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderBookingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderBookingQty() {
+ return isSetField(800);
+ }
+
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.SecondaryAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryAllocID get(quickfix.field.SecondaryAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryAllocID getSecondaryAllocID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryAllocID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryAllocID() {
+ return isSetField(793);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocAccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccountType get(quickfix.field.AllocAccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccountType getAllocAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccountType());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccountType() {
+ return isSetField(798);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CrossOrderCancelReplaceRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CrossOrderCancelReplaceRequest.java
new file mode 100644
index 000000000..e742fe157
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CrossOrderCancelReplaceRequest.java
@@ -0,0 +1,6182 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CrossOrderCancelReplaceRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "t";
+
+
+ public CrossOrderCancelReplaceRequest() {
+
+ super(new int[] {37, 548, 551, 549, 550, 552, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 63, 64, 21, 18, 110, 111, 100, 386, 81, 140, 114, 60, 232, 40, 423, 44, 99, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 15, 376, 23, 117, 59, 168, 432, 126, 427, 210, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 480, 481, 513, 494, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CrossOrderCancelReplaceRequest(quickfix.field.CrossID crossID, quickfix.field.OrigCrossID origCrossID, quickfix.field.CrossType crossType, quickfix.field.CrossPrioritization crossPrioritization, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(crossID);
+ setField(origCrossID);
+ setField(crossType);
+ setField(crossPrioritization);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.CrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossID get(quickfix.field.CrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossID getCrossID() throws FieldNotFound {
+ return get(new quickfix.field.CrossID());
+ }
+
+ public boolean isSet(quickfix.field.CrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossID() {
+ return isSetField(548);
+ }
+
+ public void set(quickfix.field.OrigCrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigCrossID get(quickfix.field.OrigCrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigCrossID getOrigCrossID() throws FieldNotFound {
+ return get(new quickfix.field.OrigCrossID());
+ }
+
+ public boolean isSet(quickfix.field.OrigCrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigCrossID() {
+ return isSetField(551);
+ }
+
+ public void set(quickfix.field.CrossType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossType get(quickfix.field.CrossType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossType getCrossType() throws FieldNotFound {
+ return get(new quickfix.field.CrossType());
+ }
+
+ public boolean isSet(quickfix.field.CrossType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossType() {
+ return isSetField(549);
+ }
+
+ public void set(quickfix.field.CrossPrioritization value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossPrioritization get(quickfix.field.CrossPrioritization value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossPrioritization getCrossPrioritization() throws FieldNotFound {
+ return get(new quickfix.field.CrossPrioritization());
+ }
+
+ public boolean isSet(quickfix.field.CrossPrioritization field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossPrioritization() {
+ return isSetField(550);
+ }
+
+ public void set(quickfix.field.NoSides value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSides get(quickfix.field.NoSides value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSides getNoSides() throws FieldNotFound {
+ return get(new quickfix.field.NoSides());
+ }
+
+ public boolean isSet(quickfix.field.NoSides field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSides() {
+ return isSetField(552);
+ }
+
+ public static class NoSides extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {54, 41, 11, 526, 583, 586, 453, 229, 75, 1, 660, 581, 589, 590, 591, 70, 78, 854, 38, 152, 516, 468, 469, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 77, 203, 544, 635, 377, 659, 0};
+
+ public NoSides() {
+ super(552, 54, ORDER);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.OrigOrdModTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigOrdModTime get(quickfix.field.OrigOrdModTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigOrdModTime getOrigOrdModTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigOrdModTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigOrdModTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigOrdModTime() {
+ return isSetField(586);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 539, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.SideComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideComplianceID get(quickfix.field.SideComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideComplianceID getSideComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.SideComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.SideComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideComplianceID() {
+ return isSetField(659);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CrossOrderCancelRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CrossOrderCancelRequest.java
new file mode 100644
index 000000000..fac04fe11
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/CrossOrderCancelRequest.java
@@ -0,0 +1,3935 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class CrossOrderCancelRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "u";
+
+
+ public CrossOrderCancelRequest() {
+
+ super(new int[] {37, 548, 551, 549, 550, 552, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 60, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public CrossOrderCancelRequest(quickfix.field.CrossID crossID, quickfix.field.OrigCrossID origCrossID, quickfix.field.CrossType crossType, quickfix.field.CrossPrioritization crossPrioritization, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(crossID);
+ setField(origCrossID);
+ setField(crossType);
+ setField(crossPrioritization);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.CrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossID get(quickfix.field.CrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossID getCrossID() throws FieldNotFound {
+ return get(new quickfix.field.CrossID());
+ }
+
+ public boolean isSet(quickfix.field.CrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossID() {
+ return isSetField(548);
+ }
+
+ public void set(quickfix.field.OrigCrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigCrossID get(quickfix.field.OrigCrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigCrossID getOrigCrossID() throws FieldNotFound {
+ return get(new quickfix.field.OrigCrossID());
+ }
+
+ public boolean isSet(quickfix.field.OrigCrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigCrossID() {
+ return isSetField(551);
+ }
+
+ public void set(quickfix.field.CrossType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossType get(quickfix.field.CrossType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossType getCrossType() throws FieldNotFound {
+ return get(new quickfix.field.CrossType());
+ }
+
+ public boolean isSet(quickfix.field.CrossType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossType() {
+ return isSetField(549);
+ }
+
+ public void set(quickfix.field.CrossPrioritization value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossPrioritization get(quickfix.field.CrossPrioritization value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossPrioritization getCrossPrioritization() throws FieldNotFound {
+ return get(new quickfix.field.CrossPrioritization());
+ }
+
+ public boolean isSet(quickfix.field.CrossPrioritization field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossPrioritization() {
+ return isSetField(550);
+ }
+
+ public void set(quickfix.field.NoSides value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSides get(quickfix.field.NoSides value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSides getNoSides() throws FieldNotFound {
+ return get(new quickfix.field.NoSides());
+ }
+
+ public boolean isSet(quickfix.field.NoSides field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSides() {
+ return isSetField(552);
+ }
+
+ public static class NoSides extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {54, 41, 11, 526, 583, 586, 453, 229, 75, 38, 152, 516, 468, 469, 376, 58, 354, 355, 0};
+
+ public NoSides() {
+ super(552, 54, ORDER);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.OrigOrdModTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigOrdModTime get(quickfix.field.OrigOrdModTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigOrdModTime getOrigOrdModTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigOrdModTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigOrdModTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigOrdModTime() {
+ return isSetField(586);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DerivativeSecurityList.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DerivativeSecurityList.java
new file mode 100644
index 000000000..811b44604
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DerivativeSecurityList.java
@@ -0,0 +1,3604 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class DerivativeSecurityList extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AA";
+
+
+ public DerivativeSecurityList() {
+
+ super(new int[] {320, 322, 560, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 393, 893, 146, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public DerivativeSecurityList(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityResponseID securityResponseID, quickfix.field.SecurityRequestResult securityRequestResult) {
+ this();
+ setField(securityReqID);
+ setField(securityResponseID);
+ setField(securityRequestResult);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseID get(quickfix.field.SecurityResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseID getSecurityResponseID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseID() {
+ return isSetField(322);
+ }
+
+ public void set(quickfix.field.SecurityRequestResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityRequestResult get(quickfix.field.SecurityRequestResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityRequestResult getSecurityRequestResult() throws FieldNotFound {
+ return get(new quickfix.field.SecurityRequestResult());
+ }
+
+ public boolean isSet(quickfix.field.SecurityRequestResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityRequestResult() {
+ return isSetField(560);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.TotNoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoRelatedSym get(quickfix.field.TotNoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoRelatedSym getTotNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.TotNoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.TotNoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoRelatedSym() {
+ return isSetField(393);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 827, 668, 869, 870, 555, 336, 625, 58, 354, 355, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ExpirationCycle value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpirationCycle get(quickfix.field.ExpirationCycle value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpirationCycle getExpirationCycle() throws FieldNotFound {
+ return get(new quickfix.field.ExpirationCycle());
+ }
+
+ public boolean isSet(quickfix.field.ExpirationCycle field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpirationCycle() {
+ return isSetField(827);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DerivativeSecurityListRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DerivativeSecurityListRequest.java
new file mode 100644
index 000000000..1c98b0855
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DerivativeSecurityListRequest.java
@@ -0,0 +1,1356 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class DerivativeSecurityListRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "z";
+
+
+ public DerivativeSecurityListRequest() {
+
+ super(new int[] {320, 559, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 762, 15, 58, 354, 355, 336, 625, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public DerivativeSecurityListRequest(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityListRequestType securityListRequestType) {
+ this();
+ setField(securityReqID);
+ setField(securityListRequestType);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityListRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityListRequestType get(quickfix.field.SecurityListRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityListRequestType getSecurityListRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityListRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityListRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityListRequestType() {
+ return isSetField(559);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DontKnowTrade.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DontKnowTrade.java
new file mode 100644
index 000000000..6c03bc979
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/DontKnowTrade.java
@@ -0,0 +1,3552 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class DontKnowTrade extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "Q";
+
+
+ public DontKnowTrade() {
+
+ super(new int[] {37, 198, 17, 127, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 54, 38, 152, 516, 468, 469, 32, 31, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public DontKnowTrade(quickfix.field.OrderID orderID, quickfix.field.ExecID execID, quickfix.field.DKReason dKReason, quickfix.field.Side side) {
+ this();
+ setField(orderID);
+ setField(execID);
+ setField(dKReason);
+ setField(side);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.DKReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.DKReason get(quickfix.field.DKReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DKReason getDKReason() throws FieldNotFound {
+ return get(new quickfix.field.DKReason());
+ }
+
+ public boolean isSet(quickfix.field.DKReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDKReason() {
+ return isSetField(127);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.LastQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastQty get(quickfix.field.LastQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastQty getLastQty() throws FieldNotFound {
+ return get(new quickfix.field.LastQty());
+ }
+
+ public boolean isSet(quickfix.field.LastQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastQty() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Email.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Email.java
new file mode 100644
index 000000000..0f875a472
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Email.java
@@ -0,0 +1,3634 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Email extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "C";
+
+
+ public Email() {
+
+ super(new int[] {164, 94, 42, 147, 356, 357, 215, 146, 711, 555, 37, 11, 33, 95, 96, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Email(quickfix.field.EmailThreadID emailThreadID, quickfix.field.EmailType emailType, quickfix.field.Subject subject) {
+ this();
+ setField(emailThreadID);
+ setField(emailType);
+ setField(subject);
+ }
+
+ public void set(quickfix.field.EmailThreadID value) {
+ setField(value);
+ }
+
+ public quickfix.field.EmailThreadID get(quickfix.field.EmailThreadID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EmailThreadID getEmailThreadID() throws FieldNotFound {
+ return get(new quickfix.field.EmailThreadID());
+ }
+
+ public boolean isSet(quickfix.field.EmailThreadID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEmailThreadID() {
+ return isSetField(164);
+ }
+
+ public void set(quickfix.field.EmailType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EmailType get(quickfix.field.EmailType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EmailType getEmailType() throws FieldNotFound {
+ return get(new quickfix.field.EmailType());
+ }
+
+ public boolean isSet(quickfix.field.EmailType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEmailType() {
+ return isSetField(94);
+ }
+
+ public void set(quickfix.field.OrigTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigTime get(quickfix.field.OrigTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigTime getOrigTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigTime() {
+ return isSetField(42);
+ }
+
+ public void set(quickfix.field.Subject value) {
+ setField(value);
+ }
+
+ public quickfix.field.Subject get(quickfix.field.Subject value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Subject getSubject() throws FieldNotFound {
+ return get(new quickfix.field.Subject());
+ }
+
+ public boolean isSet(quickfix.field.Subject field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubject() {
+ return isSetField(147);
+ }
+
+ public void set(quickfix.field.EncodedSubjectLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSubjectLen get(quickfix.field.EncodedSubjectLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSubjectLen getEncodedSubjectLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSubjectLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSubjectLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSubjectLen() {
+ return isSetField(356);
+ }
+
+ public void set(quickfix.field.EncodedSubject value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSubject get(quickfix.field.EncodedSubject value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSubject getEncodedSubject() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSubject());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSubject field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSubject() {
+ return isSetField(357);
+ }
+
+ public void set(quickfix.field.NoRoutingIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRoutingIDs get(quickfix.field.NoRoutingIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRoutingIDs getNoRoutingIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoRoutingIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoRoutingIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRoutingIDs() {
+ return isSetField(215);
+ }
+
+ public static class NoRoutingIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {216, 217, 0};
+
+ public NoRoutingIDs() {
+ super(215, 216, ORDER);
+ }
+
+ public void set(quickfix.field.RoutingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingType get(quickfix.field.RoutingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingType getRoutingType() throws FieldNotFound {
+ return get(new quickfix.field.RoutingType());
+ }
+
+ public boolean isSet(quickfix.field.RoutingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingType() {
+ return isSetField(216);
+ }
+
+ public void set(quickfix.field.RoutingID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingID get(quickfix.field.RoutingID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingID getRoutingID() throws FieldNotFound {
+ return get(new quickfix.field.RoutingID());
+ }
+
+ public boolean isSet(quickfix.field.RoutingID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingID() {
+ return isSetField(217);
+ }
+
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.LinesOfText value) {
+ setField(value);
+ }
+
+ public quickfix.field.LinesOfText get(quickfix.field.LinesOfText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LinesOfText getLinesOfText() throws FieldNotFound {
+ return get(new quickfix.field.LinesOfText());
+ }
+
+ public boolean isSet(quickfix.field.LinesOfText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLinesOfText() {
+ return isSetField(33);
+ }
+
+ public static class LinesOfText extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {58, 354, 355, 0};
+
+ public LinesOfText() {
+ super(33, 58, ORDER);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.field.RawDataLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawDataLength get(quickfix.field.RawDataLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawDataLength getRawDataLength() throws FieldNotFound {
+ return get(new quickfix.field.RawDataLength());
+ }
+
+ public boolean isSet(quickfix.field.RawDataLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawDataLength() {
+ return isSetField(95);
+ }
+
+ public void set(quickfix.field.RawData value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawData get(quickfix.field.RawData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawData getRawData() throws FieldNotFound {
+ return get(new quickfix.field.RawData());
+ }
+
+ public boolean isSet(quickfix.field.RawData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawData() {
+ return isSetField(96);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ExecutionReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ExecutionReport.java
new file mode 100644
index 000000000..63fe83600
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ExecutionReport.java
@@ -0,0 +1,7922 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ExecutionReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "8";
+
+
+ public ExecutionReport() {
+
+ super(new int[] {37, 198, 526, 527, 11, 41, 583, 693, 790, 584, 911, 912, 453, 229, 382, 66, 548, 551, 549, 17, 19, 150, 39, 636, 103, 378, 1, 660, 581, 589, 590, 591, 63, 64, 544, 635, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 232, 854, 38, 152, 516, 468, 469, 40, 423, 44, 99, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 839, 845, 847, 848, 849, 850, 15, 376, 377, 59, 168, 432, 126, 18, 528, 529, 582, 32, 652, 31, 651, 669, 194, 195, 30, 336, 625, 943, 29, 151, 14, 6, 424, 425, 426, 427, 75, 60, 113, 12, 13, 479, 497, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 381, 157, 230, 158, 159, 738, 920, 921, 922, 258, 259, 260, 238, 237, 118, 119, 120, 155, 156, 21, 110, 111, 77, 210, 775, 58, 354, 355, 193, 192, 641, 442, 480, 481, 513, 494, 483, 515, 484, 485, 638, 639, 851, 518, 555, 797, 136, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ExecutionReport(quickfix.field.OrderID orderID, quickfix.field.ExecID execID, quickfix.field.ExecType execType, quickfix.field.OrdStatus ordStatus, quickfix.field.Side side, quickfix.field.LeavesQty leavesQty, quickfix.field.CumQty cumQty, quickfix.field.AvgPx avgPx) {
+ this();
+ setField(orderID);
+ setField(execID);
+ setField(execType);
+ setField(ordStatus);
+ setField(side);
+ setField(leavesQty);
+ setField(cumQty);
+ setField(avgPx);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.SecondaryExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryExecID get(quickfix.field.SecondaryExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryExecID getSecondaryExecID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryExecID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryExecID() {
+ return isSetField(527);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.QuoteRespID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRespID get(quickfix.field.QuoteRespID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRespID getQuoteRespID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRespID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRespID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRespID() {
+ return isSetField(693);
+ }
+
+ public void set(quickfix.field.OrdStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatusReqID get(quickfix.field.OrdStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatusReqID getOrdStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatusReqID() {
+ return isSetField(790);
+ }
+
+ public void set(quickfix.field.MassStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassStatusReqID get(quickfix.field.MassStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassStatusReqID getMassStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.MassStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.MassStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassStatusReqID() {
+ return isSetField(584);
+ }
+
+ public void set(quickfix.field.TotNumReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNumReports get(quickfix.field.TotNumReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNumReports getTotNumReports() throws FieldNotFound {
+ return get(new quickfix.field.TotNumReports());
+ }
+
+ public boolean isSet(quickfix.field.TotNumReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNumReports() {
+ return isSetField(911);
+ }
+
+ public void set(quickfix.field.LastRptRequested value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastRptRequested get(quickfix.field.LastRptRequested value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastRptRequested getLastRptRequested() throws FieldNotFound {
+ return get(new quickfix.field.LastRptRequested());
+ }
+
+ public boolean isSet(quickfix.field.LastRptRequested field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastRptRequested() {
+ return isSetField(912);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.NoContraBrokers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoContraBrokers get(quickfix.field.NoContraBrokers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoContraBrokers getNoContraBrokers() throws FieldNotFound {
+ return get(new quickfix.field.NoContraBrokers());
+ }
+
+ public boolean isSet(quickfix.field.NoContraBrokers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoContraBrokers() {
+ return isSetField(382);
+ }
+
+ public static class NoContraBrokers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {375, 337, 437, 438, 655, 0};
+
+ public NoContraBrokers() {
+ super(382, 375, ORDER);
+ }
+
+ public void set(quickfix.field.ContraBroker value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraBroker get(quickfix.field.ContraBroker value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraBroker getContraBroker() throws FieldNotFound {
+ return get(new quickfix.field.ContraBroker());
+ }
+
+ public boolean isSet(quickfix.field.ContraBroker field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraBroker() {
+ return isSetField(375);
+ }
+
+ public void set(quickfix.field.ContraTrader value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraTrader get(quickfix.field.ContraTrader value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraTrader getContraTrader() throws FieldNotFound {
+ return get(new quickfix.field.ContraTrader());
+ }
+
+ public boolean isSet(quickfix.field.ContraTrader field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraTrader() {
+ return isSetField(337);
+ }
+
+ public void set(quickfix.field.ContraTradeQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraTradeQty get(quickfix.field.ContraTradeQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraTradeQty getContraTradeQty() throws FieldNotFound {
+ return get(new quickfix.field.ContraTradeQty());
+ }
+
+ public boolean isSet(quickfix.field.ContraTradeQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraTradeQty() {
+ return isSetField(437);
+ }
+
+ public void set(quickfix.field.ContraTradeTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraTradeTime get(quickfix.field.ContraTradeTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraTradeTime getContraTradeTime() throws FieldNotFound {
+ return get(new quickfix.field.ContraTradeTime());
+ }
+
+ public boolean isSet(quickfix.field.ContraTradeTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraTradeTime() {
+ return isSetField(438);
+ }
+
+ public void set(quickfix.field.ContraLegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraLegRefID get(quickfix.field.ContraLegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraLegRefID getContraLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.ContraLegRefID());
+ }
+
+ public boolean isSet(quickfix.field.ContraLegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraLegRefID() {
+ return isSetField(655);
+ }
+
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.CrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossID get(quickfix.field.CrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossID getCrossID() throws FieldNotFound {
+ return get(new quickfix.field.CrossID());
+ }
+
+ public boolean isSet(quickfix.field.CrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossID() {
+ return isSetField(548);
+ }
+
+ public void set(quickfix.field.OrigCrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigCrossID get(quickfix.field.OrigCrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigCrossID getOrigCrossID() throws FieldNotFound {
+ return get(new quickfix.field.OrigCrossID());
+ }
+
+ public boolean isSet(quickfix.field.OrigCrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigCrossID() {
+ return isSetField(551);
+ }
+
+ public void set(quickfix.field.CrossType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossType get(quickfix.field.CrossType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossType getCrossType() throws FieldNotFound {
+ return get(new quickfix.field.CrossType());
+ }
+
+ public boolean isSet(quickfix.field.CrossType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossType() {
+ return isSetField(549);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.ExecRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecRefID get(quickfix.field.ExecRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecRefID getExecRefID() throws FieldNotFound {
+ return get(new quickfix.field.ExecRefID());
+ }
+
+ public boolean isSet(quickfix.field.ExecRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecRefID() {
+ return isSetField(19);
+ }
+
+ public void set(quickfix.field.ExecType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecType get(quickfix.field.ExecType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecType getExecType() throws FieldNotFound {
+ return get(new quickfix.field.ExecType());
+ }
+
+ public boolean isSet(quickfix.field.ExecType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecType() {
+ return isSetField(150);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.WorkingIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.WorkingIndicator get(quickfix.field.WorkingIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.WorkingIndicator getWorkingIndicator() throws FieldNotFound {
+ return get(new quickfix.field.WorkingIndicator());
+ }
+
+ public boolean isSet(quickfix.field.WorkingIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetWorkingIndicator() {
+ return isSetField(636);
+ }
+
+ public void set(quickfix.field.OrdRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdRejReason get(quickfix.field.OrdRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdRejReason getOrdRejReason() throws FieldNotFound {
+ return get(new quickfix.field.OrdRejReason());
+ }
+
+ public boolean isSet(quickfix.field.OrdRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdRejReason() {
+ return isSetField(103);
+ }
+
+ public void set(quickfix.field.ExecRestatementReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecRestatementReason get(quickfix.field.ExecRestatementReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecRestatementReason getExecRestatementReason() throws FieldNotFound {
+ return get(new quickfix.field.ExecRestatementReason());
+ }
+
+ public boolean isSet(quickfix.field.ExecRestatementReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecRestatementReason() {
+ return isSetField(378);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.PeggedPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.PeggedPrice get(quickfix.field.PeggedPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PeggedPrice getPeggedPrice() throws FieldNotFound {
+ return get(new quickfix.field.PeggedPrice());
+ }
+
+ public boolean isSet(quickfix.field.PeggedPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPeggedPrice() {
+ return isSetField(839);
+ }
+
+ public void set(quickfix.field.DiscretionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionPrice get(quickfix.field.DiscretionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionPrice getDiscretionPrice() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionPrice());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionPrice() {
+ return isSetField(845);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.TargetStrategyPerformance value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyPerformance get(quickfix.field.TargetStrategyPerformance value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyPerformance getTargetStrategyPerformance() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyPerformance());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyPerformance field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyPerformance() {
+ return isSetField(850);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.LastQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastQty get(quickfix.field.LastQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastQty getLastQty() throws FieldNotFound {
+ return get(new quickfix.field.LastQty());
+ }
+
+ public boolean isSet(quickfix.field.LastQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastQty() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.UnderlyingLastQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLastQty get(quickfix.field.UnderlyingLastQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLastQty getUnderlyingLastQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLastQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLastQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLastQty() {
+ return isSetField(652);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.UnderlyingLastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLastPx get(quickfix.field.UnderlyingLastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLastPx getUnderlyingLastPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLastPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLastPx() {
+ return isSetField(651);
+ }
+
+ public void set(quickfix.field.LastParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastParPx get(quickfix.field.LastParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastParPx getLastParPx() throws FieldNotFound {
+ return get(new quickfix.field.LastParPx());
+ }
+
+ public boolean isSet(quickfix.field.LastParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastParPx() {
+ return isSetField(669);
+ }
+
+ public void set(quickfix.field.LastSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastSpotRate get(quickfix.field.LastSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastSpotRate getLastSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.LastSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.LastSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastSpotRate() {
+ return isSetField(194);
+ }
+
+ public void set(quickfix.field.LastForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastForwardPoints get(quickfix.field.LastForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastForwardPoints getLastForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.LastForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.LastForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastForwardPoints() {
+ return isSetField(195);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.TimeBracket value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeBracket get(quickfix.field.TimeBracket value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeBracket getTimeBracket() throws FieldNotFound {
+ return get(new quickfix.field.TimeBracket());
+ }
+
+ public boolean isSet(quickfix.field.TimeBracket field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeBracket() {
+ return isSetField(943);
+ }
+
+ public void set(quickfix.field.LastCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastCapacity get(quickfix.field.LastCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastCapacity getLastCapacity() throws FieldNotFound {
+ return get(new quickfix.field.LastCapacity());
+ }
+
+ public boolean isSet(quickfix.field.LastCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastCapacity() {
+ return isSetField(29);
+ }
+
+ public void set(quickfix.field.LeavesQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LeavesQty get(quickfix.field.LeavesQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LeavesQty getLeavesQty() throws FieldNotFound {
+ return get(new quickfix.field.LeavesQty());
+ }
+
+ public boolean isSet(quickfix.field.LeavesQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLeavesQty() {
+ return isSetField(151);
+ }
+
+ public void set(quickfix.field.CumQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CumQty get(quickfix.field.CumQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CumQty getCumQty() throws FieldNotFound {
+ return get(new quickfix.field.CumQty());
+ }
+
+ public boolean isSet(quickfix.field.CumQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCumQty() {
+ return isSetField(14);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.DayOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayOrderQty get(quickfix.field.DayOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayOrderQty getDayOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.DayOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.DayOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayOrderQty() {
+ return isSetField(424);
+ }
+
+ public void set(quickfix.field.DayCumQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayCumQty get(quickfix.field.DayCumQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayCumQty getDayCumQty() throws FieldNotFound {
+ return get(new quickfix.field.DayCumQty());
+ }
+
+ public boolean isSet(quickfix.field.DayCumQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayCumQty() {
+ return isSetField(425);
+ }
+
+ public void set(quickfix.field.DayAvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayAvgPx get(quickfix.field.DayAvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayAvgPx getDayAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.DayAvgPx());
+ }
+
+ public boolean isSet(quickfix.field.DayAvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayAvgPx() {
+ return isSetField(426);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.ReportToExch value) {
+ setField(value);
+ }
+
+ public quickfix.field.ReportToExch get(quickfix.field.ReportToExch value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ReportToExch getReportToExch() throws FieldNotFound {
+ return get(new quickfix.field.ReportToExch());
+ }
+
+ public boolean isSet(quickfix.field.ReportToExch field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetReportToExch() {
+ return isSetField(113);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.NumDaysInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumDaysInterest get(quickfix.field.NumDaysInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumDaysInterest getNumDaysInterest() throws FieldNotFound {
+ return get(new quickfix.field.NumDaysInterest());
+ }
+
+ public boolean isSet(quickfix.field.NumDaysInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumDaysInterest() {
+ return isSetField(157);
+ }
+
+ public void set(quickfix.field.ExDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDate get(quickfix.field.ExDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDate getExDate() throws FieldNotFound {
+ return get(new quickfix.field.ExDate());
+ }
+
+ public boolean isSet(quickfix.field.ExDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDate() {
+ return isSetField(230);
+ }
+
+ public void set(quickfix.field.AccruedInterestRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestRate get(quickfix.field.AccruedInterestRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestRate getAccruedInterestRate() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestRate());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestRate() {
+ return isSetField(158);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.InterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAtMaturity get(quickfix.field.InterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAtMaturity getInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.InterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.InterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAtMaturity() {
+ return isSetField(738);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.field.TradedFlatSwitch value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradedFlatSwitch get(quickfix.field.TradedFlatSwitch value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradedFlatSwitch getTradedFlatSwitch() throws FieldNotFound {
+ return get(new quickfix.field.TradedFlatSwitch());
+ }
+
+ public boolean isSet(quickfix.field.TradedFlatSwitch field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradedFlatSwitch() {
+ return isSetField(258);
+ }
+
+ public void set(quickfix.field.BasisFeatureDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BasisFeatureDate get(quickfix.field.BasisFeatureDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BasisFeatureDate getBasisFeatureDate() throws FieldNotFound {
+ return get(new quickfix.field.BasisFeatureDate());
+ }
+
+ public boolean isSet(quickfix.field.BasisFeatureDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBasisFeatureDate() {
+ return isSetField(259);
+ }
+
+ public void set(quickfix.field.BasisFeaturePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BasisFeaturePrice get(quickfix.field.BasisFeaturePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BasisFeaturePrice getBasisFeaturePrice() throws FieldNotFound {
+ return get(new quickfix.field.BasisFeaturePrice());
+ }
+
+ public boolean isSet(quickfix.field.BasisFeaturePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBasisFeaturePrice() {
+ return isSetField(260);
+ }
+
+ public void set(quickfix.field.Concession value) {
+ setField(value);
+ }
+
+ public quickfix.field.Concession get(quickfix.field.Concession value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Concession getConcession() throws FieldNotFound {
+ return get(new quickfix.field.Concession());
+ }
+
+ public boolean isSet(quickfix.field.Concession field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConcession() {
+ return isSetField(238);
+ }
+
+ public void set(quickfix.field.TotalTakedown value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalTakedown get(quickfix.field.TotalTakedown value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalTakedown getTotalTakedown() throws FieldNotFound {
+ return get(new quickfix.field.TotalTakedown());
+ }
+
+ public boolean isSet(quickfix.field.TotalTakedown field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalTakedown() {
+ return isSetField(237);
+ }
+
+ public void set(quickfix.field.NetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetMoney get(quickfix.field.NetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetMoney getNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.NetMoney());
+ }
+
+ public boolean isSet(quickfix.field.NetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetMoney() {
+ return isSetField(118);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.LastForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastForwardPoints2 get(quickfix.field.LastForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastForwardPoints2 getLastForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.LastForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.LastForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastForwardPoints2() {
+ return isSetField(641);
+ }
+
+ public void set(quickfix.field.MultiLegReportingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MultiLegReportingType get(quickfix.field.MultiLegReportingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MultiLegReportingType getMultiLegReportingType() throws FieldNotFound {
+ return get(new quickfix.field.MultiLegReportingType());
+ }
+
+ public boolean isSet(quickfix.field.MultiLegReportingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMultiLegReportingType() {
+ return isSetField(442);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+ public void set(quickfix.field.TransBkdTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransBkdTime get(quickfix.field.TransBkdTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransBkdTime getTransBkdTime() throws FieldNotFound {
+ return get(new quickfix.field.TransBkdTime());
+ }
+
+ public boolean isSet(quickfix.field.TransBkdTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransBkdTime() {
+ return isSetField(483);
+ }
+
+ public void set(quickfix.field.ExecValuationPoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecValuationPoint get(quickfix.field.ExecValuationPoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecValuationPoint getExecValuationPoint() throws FieldNotFound {
+ return get(new quickfix.field.ExecValuationPoint());
+ }
+
+ public boolean isSet(quickfix.field.ExecValuationPoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecValuationPoint() {
+ return isSetField(515);
+ }
+
+ public void set(quickfix.field.ExecPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecPriceType get(quickfix.field.ExecPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecPriceType getExecPriceType() throws FieldNotFound {
+ return get(new quickfix.field.ExecPriceType());
+ }
+
+ public boolean isSet(quickfix.field.ExecPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecPriceType() {
+ return isSetField(484);
+ }
+
+ public void set(quickfix.field.ExecPriceAdjustment value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecPriceAdjustment get(quickfix.field.ExecPriceAdjustment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecPriceAdjustment getExecPriceAdjustment() throws FieldNotFound {
+ return get(new quickfix.field.ExecPriceAdjustment());
+ }
+
+ public boolean isSet(quickfix.field.ExecPriceAdjustment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecPriceAdjustment() {
+ return isSetField(485);
+ }
+
+ public void set(quickfix.field.PriorityIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriorityIndicator get(quickfix.field.PriorityIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriorityIndicator getPriorityIndicator() throws FieldNotFound {
+ return get(new quickfix.field.PriorityIndicator());
+ }
+
+ public boolean isSet(quickfix.field.PriorityIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriorityIndicator() {
+ return isSetField(638);
+ }
+
+ public void set(quickfix.field.PriceImprovement value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceImprovement get(quickfix.field.PriceImprovement value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceImprovement getPriceImprovement() throws FieldNotFound {
+ return get(new quickfix.field.PriceImprovement());
+ }
+
+ public boolean isSet(quickfix.field.PriceImprovement field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceImprovement() {
+ return isSetField(639);
+ }
+
+ public void set(quickfix.field.LastLiquidityInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastLiquidityInd get(quickfix.field.LastLiquidityInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastLiquidityInd getLastLiquidityInd() throws FieldNotFound {
+ return get(new quickfix.field.LastLiquidityInd());
+ }
+
+ public boolean isSet(quickfix.field.LastLiquidityInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastLiquidityInd() {
+ return isSetField(851);
+ }
+
+ public void set(quickfix.field.NoContAmts value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoContAmts get(quickfix.field.NoContAmts value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoContAmts getNoContAmts() throws FieldNotFound {
+ return get(new quickfix.field.NoContAmts());
+ }
+
+ public boolean isSet(quickfix.field.NoContAmts field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoContAmts() {
+ return isSetField(518);
+ }
+
+ public static class NoContAmts extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {519, 520, 521, 0};
+
+ public NoContAmts() {
+ super(518, 519, ORDER);
+ }
+
+ public void set(quickfix.field.ContAmtType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContAmtType get(quickfix.field.ContAmtType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContAmtType getContAmtType() throws FieldNotFound {
+ return get(new quickfix.field.ContAmtType());
+ }
+
+ public boolean isSet(quickfix.field.ContAmtType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContAmtType() {
+ return isSetField(519);
+ }
+
+ public void set(quickfix.field.ContAmtValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContAmtValue get(quickfix.field.ContAmtValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContAmtValue getContAmtValue() throws FieldNotFound {
+ return get(new quickfix.field.ContAmtValue());
+ }
+
+ public boolean isSet(quickfix.field.ContAmtValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContAmtValue() {
+ return isSetField(520);
+ }
+
+ public void set(quickfix.field.ContAmtCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContAmtCurr get(quickfix.field.ContAmtCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContAmtCurr getContAmtCurr() throws FieldNotFound {
+ return get(new quickfix.field.ContAmtCurr());
+ }
+
+ public boolean isSet(quickfix.field.ContAmtCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContAmtCurr() {
+ return isSetField(521);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 683, 564, 565, 539, 654, 566, 587, 588, 637, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.field.LegPositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPositionEffect get(quickfix.field.LegPositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPositionEffect getLegPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.LegPositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.LegPositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPositionEffect() {
+ return isSetField(564);
+ }
+
+ public void set(quickfix.field.LegCoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCoveredOrUncovered get(quickfix.field.LegCoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCoveredOrUncovered getLegCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.LegCoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.LegCoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCoveredOrUncovered() {
+ return isSetField(565);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRefID get(quickfix.field.LegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRefID getLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.LegRefID());
+ }
+
+ public boolean isSet(quickfix.field.LegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRefID() {
+ return isSetField(654);
+ }
+
+ public void set(quickfix.field.LegPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPrice get(quickfix.field.LegPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPrice getLegPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPrice() {
+ return isSetField(566);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.field.LegLastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLastPx get(quickfix.field.LegLastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLastPx getLegLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LegLastPx());
+ }
+
+ public boolean isSet(quickfix.field.LegLastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLastPx() {
+ return isSetField(637);
+ }
+
+ }
+
+ public void set(quickfix.field.CopyMsgIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.CopyMsgIndicator get(quickfix.field.CopyMsgIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CopyMsgIndicator getCopyMsgIndicator() throws FieldNotFound {
+ return get(new quickfix.field.CopyMsgIndicator());
+ }
+
+ public boolean isSet(quickfix.field.CopyMsgIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCopyMsgIndicator() {
+ return isSetField(797);
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Heartbeat.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Heartbeat.java
new file mode 100644
index 000000000..e7eb4b402
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Heartbeat.java
@@ -0,0 +1,41 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class Heartbeat extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "0";
+
+
+ public Heartbeat() {
+
+ super(new int[] {112, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.TestReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TestReqID get(quickfix.field.TestReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TestReqID getTestReqID() throws FieldNotFound {
+ return get(new quickfix.field.TestReqID());
+ }
+
+ public boolean isSet(quickfix.field.TestReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTestReqID() {
+ return isSetField(112);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/IndicationOfInterest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/IndicationOfInterest.java
new file mode 100644
index 000000000..15a4a13d9
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/IndicationOfInterest.java
@@ -0,0 +1,4543 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class IndicationOfInterest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "6";
+
+
+ public IndicationOfInterest() {
+
+ super(new int[] {23, 28, 26, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 854, 38, 152, 516, 468, 469, 27, 15, 232, 555, 423, 44, 62, 25, 130, 199, 58, 354, 355, 60, 149, 215, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public IndicationOfInterest(quickfix.field.IOIID iOIID, quickfix.field.IOITransType iOITransType, quickfix.field.Side side, quickfix.field.IOIQty iOIQty) {
+ this();
+ setField(iOIID);
+ setField(iOITransType);
+ setField(side);
+ setField(iOIQty);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.IOITransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOITransType get(quickfix.field.IOITransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOITransType getIOITransType() throws FieldNotFound {
+ return get(new quickfix.field.IOITransType());
+ }
+
+ public boolean isSet(quickfix.field.IOITransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOITransType() {
+ return isSetField(28);
+ }
+
+ public void set(quickfix.field.IOIRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIRefID get(quickfix.field.IOIRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIRefID getIOIRefID() throws FieldNotFound {
+ return get(new quickfix.field.IOIRefID());
+ }
+
+ public boolean isSet(quickfix.field.IOIRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIRefID() {
+ return isSetField(26);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.IOIQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIQty get(quickfix.field.IOIQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIQty getIOIQty() throws FieldNotFound {
+ return get(new quickfix.field.IOIQty());
+ }
+
+ public boolean isSet(quickfix.field.IOIQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIQty() {
+ return isSetField(27);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 682, 683, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegIOIQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIOIQty get(quickfix.field.LegIOIQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIOIQty getLegIOIQty() throws FieldNotFound {
+ return get(new quickfix.field.LegIOIQty());
+ }
+
+ public boolean isSet(quickfix.field.LegIOIQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIOIQty() {
+ return isSetField(682);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.IOIQltyInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIQltyInd get(quickfix.field.IOIQltyInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIQltyInd getIOIQltyInd() throws FieldNotFound {
+ return get(new quickfix.field.IOIQltyInd());
+ }
+
+ public boolean isSet(quickfix.field.IOIQltyInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIQltyInd() {
+ return isSetField(25);
+ }
+
+ public void set(quickfix.field.IOINaturalFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOINaturalFlag get(quickfix.field.IOINaturalFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOINaturalFlag getIOINaturalFlag() throws FieldNotFound {
+ return get(new quickfix.field.IOINaturalFlag());
+ }
+
+ public boolean isSet(quickfix.field.IOINaturalFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOINaturalFlag() {
+ return isSetField(130);
+ }
+
+ public void set(quickfix.field.NoIOIQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoIOIQualifiers get(quickfix.field.NoIOIQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoIOIQualifiers getNoIOIQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoIOIQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoIOIQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoIOIQualifiers() {
+ return isSetField(199);
+ }
+
+ public static class NoIOIQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {104, 0};
+
+ public NoIOIQualifiers() {
+ super(199, 104, ORDER);
+ }
+
+ public void set(quickfix.field.IOIQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIQualifier get(quickfix.field.IOIQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIQualifier getIOIQualifier() throws FieldNotFound {
+ return get(new quickfix.field.IOIQualifier());
+ }
+
+ public boolean isSet(quickfix.field.IOIQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIQualifier() {
+ return isSetField(104);
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.URLLink value) {
+ setField(value);
+ }
+
+ public quickfix.field.URLLink get(quickfix.field.URLLink value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.URLLink getURLLink() throws FieldNotFound {
+ return get(new quickfix.field.URLLink());
+ }
+
+ public boolean isSet(quickfix.field.URLLink field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetURLLink() {
+ return isSetField(149);
+ }
+
+ public void set(quickfix.field.NoRoutingIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRoutingIDs get(quickfix.field.NoRoutingIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRoutingIDs getNoRoutingIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoRoutingIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoRoutingIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRoutingIDs() {
+ return isSetField(215);
+ }
+
+ public static class NoRoutingIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {216, 217, 0};
+
+ public NoRoutingIDs() {
+ super(215, 216, ORDER);
+ }
+
+ public void set(quickfix.field.RoutingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingType get(quickfix.field.RoutingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingType getRoutingType() throws FieldNotFound {
+ return get(new quickfix.field.RoutingType());
+ }
+
+ public boolean isSet(quickfix.field.RoutingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingType() {
+ return isSetField(216);
+ }
+
+ public void set(quickfix.field.RoutingID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingID get(quickfix.field.RoutingID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingID getRoutingID() throws FieldNotFound {
+ return get(new quickfix.field.RoutingID());
+ }
+
+ public boolean isSet(quickfix.field.RoutingID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingID() {
+ return isSetField(217);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListCancelRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListCancelRequest.java
new file mode 100644
index 000000000..86f44d363
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListCancelRequest.java
@@ -0,0 +1,173 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class ListCancelRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "K";
+
+
+ public ListCancelRequest() {
+
+ super(new int[] {66, 60, 229, 75, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListCancelRequest(quickfix.field.ListID listID, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(listID);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListExecute.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListExecute.java
new file mode 100644
index 000000000..7e5bcaaa0
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListExecute.java
@@ -0,0 +1,173 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class ListExecute extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "L";
+
+
+ public ListExecute() {
+
+ super(new int[] {66, 391, 390, 60, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListExecute(quickfix.field.ListID listID, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(listID);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStatus.java
new file mode 100644
index 000000000..a30876795
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStatus.java
@@ -0,0 +1,546 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ListStatus extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "N";
+
+
+ public ListStatus() {
+
+ super(new int[] {66, 429, 82, 431, 83, 444, 445, 446, 60, 68, 893, 73, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListStatus(quickfix.field.ListID listID, quickfix.field.ListStatusType listStatusType, quickfix.field.NoRpts noRpts, quickfix.field.ListOrderStatus listOrderStatus, quickfix.field.RptSeq rptSeq, quickfix.field.TotNoOrders totNoOrders) {
+ this();
+ setField(listID);
+ setField(listStatusType);
+ setField(noRpts);
+ setField(listOrderStatus);
+ setField(rptSeq);
+ setField(totNoOrders);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.ListStatusType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListStatusType get(quickfix.field.ListStatusType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListStatusType getListStatusType() throws FieldNotFound {
+ return get(new quickfix.field.ListStatusType());
+ }
+
+ public boolean isSet(quickfix.field.ListStatusType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListStatusType() {
+ return isSetField(429);
+ }
+
+ public void set(quickfix.field.NoRpts value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRpts get(quickfix.field.NoRpts value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRpts getNoRpts() throws FieldNotFound {
+ return get(new quickfix.field.NoRpts());
+ }
+
+ public boolean isSet(quickfix.field.NoRpts field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRpts() {
+ return isSetField(82);
+ }
+
+ public void set(quickfix.field.ListOrderStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListOrderStatus get(quickfix.field.ListOrderStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListOrderStatus getListOrderStatus() throws FieldNotFound {
+ return get(new quickfix.field.ListOrderStatus());
+ }
+
+ public boolean isSet(quickfix.field.ListOrderStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListOrderStatus() {
+ return isSetField(431);
+ }
+
+ public void set(quickfix.field.RptSeq value) {
+ setField(value);
+ }
+
+ public quickfix.field.RptSeq get(quickfix.field.RptSeq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RptSeq getRptSeq() throws FieldNotFound {
+ return get(new quickfix.field.RptSeq());
+ }
+
+ public boolean isSet(quickfix.field.RptSeq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRptSeq() {
+ return isSetField(83);
+ }
+
+ public void set(quickfix.field.ListStatusText value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListStatusText get(quickfix.field.ListStatusText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListStatusText getListStatusText() throws FieldNotFound {
+ return get(new quickfix.field.ListStatusText());
+ }
+
+ public boolean isSet(quickfix.field.ListStatusText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListStatusText() {
+ return isSetField(444);
+ }
+
+ public void set(quickfix.field.EncodedListStatusTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListStatusTextLen get(quickfix.field.EncodedListStatusTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListStatusTextLen getEncodedListStatusTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListStatusTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListStatusTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListStatusTextLen() {
+ return isSetField(445);
+ }
+
+ public void set(quickfix.field.EncodedListStatusText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListStatusText get(quickfix.field.EncodedListStatusText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListStatusText getEncodedListStatusText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListStatusText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListStatusText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListStatusText() {
+ return isSetField(446);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TotNoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoOrders get(quickfix.field.TotNoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoOrders getTotNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.TotNoOrders());
+ }
+
+ public boolean isSet(quickfix.field.TotNoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoOrders() {
+ return isSetField(68);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 526, 14, 39, 636, 151, 84, 6, 103, 58, 354, 355, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.CumQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CumQty get(quickfix.field.CumQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CumQty getCumQty() throws FieldNotFound {
+ return get(new quickfix.field.CumQty());
+ }
+
+ public boolean isSet(quickfix.field.CumQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCumQty() {
+ return isSetField(14);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.WorkingIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.WorkingIndicator get(quickfix.field.WorkingIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.WorkingIndicator getWorkingIndicator() throws FieldNotFound {
+ return get(new quickfix.field.WorkingIndicator());
+ }
+
+ public boolean isSet(quickfix.field.WorkingIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetWorkingIndicator() {
+ return isSetField(636);
+ }
+
+ public void set(quickfix.field.LeavesQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LeavesQty get(quickfix.field.LeavesQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LeavesQty getLeavesQty() throws FieldNotFound {
+ return get(new quickfix.field.LeavesQty());
+ }
+
+ public boolean isSet(quickfix.field.LeavesQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLeavesQty() {
+ return isSetField(151);
+ }
+
+ public void set(quickfix.field.CxlQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CxlQty get(quickfix.field.CxlQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CxlQty getCxlQty() throws FieldNotFound {
+ return get(new quickfix.field.CxlQty());
+ }
+
+ public boolean isSet(quickfix.field.CxlQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCxlQty() {
+ return isSetField(84);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.field.OrdRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdRejReason get(quickfix.field.OrdRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdRejReason getOrdRejReason() throws FieldNotFound {
+ return get(new quickfix.field.OrdRejReason());
+ }
+
+ public boolean isSet(quickfix.field.OrdRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdRejReason() {
+ return isSetField(103);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStatusRequest.java
new file mode 100644
index 000000000..a05537515
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStatusRequest.java
@@ -0,0 +1,109 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class ListStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "M";
+
+
+ public ListStatusRequest() {
+
+ super(new int[] {66, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListStatusRequest(quickfix.field.ListID listID) {
+ this();
+ setField(listID);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStrikePrice.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStrikePrice.java
new file mode 100644
index 000000000..959c466aa
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ListStrikePrice.java
@@ -0,0 +1,2526 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class ListStrikePrice extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "m";
+
+
+ public ListStrikePrice() {
+
+ super(new int[] {66, 422, 893, 428, 711, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ListStrikePrice(quickfix.field.ListID listID, quickfix.field.TotNoStrikes totNoStrikes) {
+ this();
+ setField(listID);
+ setField(totNoStrikes);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.TotNoStrikes value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoStrikes get(quickfix.field.TotNoStrikes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoStrikes getTotNoStrikes() throws FieldNotFound {
+ return get(new quickfix.field.TotNoStrikes());
+ }
+
+ public boolean isSet(quickfix.field.TotNoStrikes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoStrikes() {
+ return isSetField(422);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoStrikes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStrikes get(quickfix.field.NoStrikes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStrikes getNoStrikes() throws FieldNotFound {
+ return get(new quickfix.field.NoStrikes());
+ }
+
+ public boolean isSet(quickfix.field.NoStrikes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStrikes() {
+ return isSetField(428);
+ }
+
+ public static class NoStrikes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 0};
+
+ public NoStrikes() {
+ super(428, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 140, 11, 526, 54, 44, 15, 58, 354, 355, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Logon.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Logon.java
new file mode 100644
index 000000000..8571a5d26
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Logon.java
@@ -0,0 +1,311 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Logon extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "A";
+
+
+ public Logon() {
+
+ super(new int[] {98, 108, 95, 96, 141, 789, 383, 384, 464, 553, 554, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Logon(quickfix.field.EncryptMethod encryptMethod, quickfix.field.HeartBtInt heartBtInt) {
+ this();
+ setField(encryptMethod);
+ setField(heartBtInt);
+ }
+
+ public void set(quickfix.field.EncryptMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncryptMethod get(quickfix.field.EncryptMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncryptMethod getEncryptMethod() throws FieldNotFound {
+ return get(new quickfix.field.EncryptMethod());
+ }
+
+ public boolean isSet(quickfix.field.EncryptMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncryptMethod() {
+ return isSetField(98);
+ }
+
+ public void set(quickfix.field.HeartBtInt value) {
+ setField(value);
+ }
+
+ public quickfix.field.HeartBtInt get(quickfix.field.HeartBtInt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HeartBtInt getHeartBtInt() throws FieldNotFound {
+ return get(new quickfix.field.HeartBtInt());
+ }
+
+ public boolean isSet(quickfix.field.HeartBtInt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHeartBtInt() {
+ return isSetField(108);
+ }
+
+ public void set(quickfix.field.RawDataLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawDataLength get(quickfix.field.RawDataLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawDataLength getRawDataLength() throws FieldNotFound {
+ return get(new quickfix.field.RawDataLength());
+ }
+
+ public boolean isSet(quickfix.field.RawDataLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawDataLength() {
+ return isSetField(95);
+ }
+
+ public void set(quickfix.field.RawData value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawData get(quickfix.field.RawData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawData getRawData() throws FieldNotFound {
+ return get(new quickfix.field.RawData());
+ }
+
+ public boolean isSet(quickfix.field.RawData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawData() {
+ return isSetField(96);
+ }
+
+ public void set(quickfix.field.ResetSeqNumFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResetSeqNumFlag get(quickfix.field.ResetSeqNumFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResetSeqNumFlag getResetSeqNumFlag() throws FieldNotFound {
+ return get(new quickfix.field.ResetSeqNumFlag());
+ }
+
+ public boolean isSet(quickfix.field.ResetSeqNumFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResetSeqNumFlag() {
+ return isSetField(141);
+ }
+
+ public void set(quickfix.field.NextExpectedMsgSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.NextExpectedMsgSeqNum get(quickfix.field.NextExpectedMsgSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NextExpectedMsgSeqNum getNextExpectedMsgSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.NextExpectedMsgSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.NextExpectedMsgSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNextExpectedMsgSeqNum() {
+ return isSetField(789);
+ }
+
+ public void set(quickfix.field.MaxMessageSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxMessageSize get(quickfix.field.MaxMessageSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxMessageSize getMaxMessageSize() throws FieldNotFound {
+ return get(new quickfix.field.MaxMessageSize());
+ }
+
+ public boolean isSet(quickfix.field.MaxMessageSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxMessageSize() {
+ return isSetField(383);
+ }
+
+ public void set(quickfix.field.NoMsgTypes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMsgTypes get(quickfix.field.NoMsgTypes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMsgTypes getNoMsgTypes() throws FieldNotFound {
+ return get(new quickfix.field.NoMsgTypes());
+ }
+
+ public boolean isSet(quickfix.field.NoMsgTypes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMsgTypes() {
+ return isSetField(384);
+ }
+
+ public static class NoMsgTypes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {372, 385, 0};
+
+ public NoMsgTypes() {
+ super(384, 372, ORDER);
+ }
+
+ public void set(quickfix.field.RefMsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefMsgType get(quickfix.field.RefMsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefMsgType getRefMsgType() throws FieldNotFound {
+ return get(new quickfix.field.RefMsgType());
+ }
+
+ public boolean isSet(quickfix.field.RefMsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefMsgType() {
+ return isSetField(372);
+ }
+
+ public void set(quickfix.field.MsgDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.MsgDirection get(quickfix.field.MsgDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MsgDirection getMsgDirection() throws FieldNotFound {
+ return get(new quickfix.field.MsgDirection());
+ }
+
+ public boolean isSet(quickfix.field.MsgDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMsgDirection() {
+ return isSetField(385);
+ }
+
+ }
+
+ public void set(quickfix.field.TestMessageIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.TestMessageIndicator get(quickfix.field.TestMessageIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TestMessageIndicator getTestMessageIndicator() throws FieldNotFound {
+ return get(new quickfix.field.TestMessageIndicator());
+ }
+
+ public boolean isSet(quickfix.field.TestMessageIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTestMessageIndicator() {
+ return isSetField(464);
+ }
+
+ public void set(quickfix.field.Username value) {
+ setField(value);
+ }
+
+ public quickfix.field.Username get(quickfix.field.Username value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Username getUsername() throws FieldNotFound {
+ return get(new quickfix.field.Username());
+ }
+
+ public boolean isSet(quickfix.field.Username field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUsername() {
+ return isSetField(553);
+ }
+
+ public void set(quickfix.field.Password value) {
+ setField(value);
+ }
+
+ public quickfix.field.Password get(quickfix.field.Password value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Password getPassword() throws FieldNotFound {
+ return get(new quickfix.field.Password());
+ }
+
+ public boolean isSet(quickfix.field.Password field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPassword() {
+ return isSetField(554);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Logout.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Logout.java
new file mode 100644
index 000000000..644232822
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Logout.java
@@ -0,0 +1,83 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class Logout extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "5";
+
+
+ public Logout() {
+
+ super(new int[] {58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataIncrementalRefresh.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataIncrementalRefresh.java
new file mode 100644
index 000000000..9fbe95ba6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataIncrementalRefresh.java
@@ -0,0 +1,4151 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataIncrementalRefresh extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "X";
+
+
+ public MarketDataIncrementalRefresh() {
+
+ super(new int[] {262, 268, 813, 814, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.NoMDEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMDEntries get(quickfix.field.NoMDEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMDEntries getNoMDEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoMDEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoMDEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMDEntries() {
+ return isSetField(268);
+ }
+
+ public static class NoMDEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {279, 285, 269, 278, 280, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 291, 292, 270, 15, 271, 272, 273, 274, 275, 336, 625, 276, 277, 282, 283, 284, 286, 59, 432, 126, 110, 18, 287, 37, 299, 288, 289, 346, 290, 546, 811, 451, 58, 354, 355, 0};
+
+ public NoMDEntries() {
+ super(268, 279, ORDER);
+ }
+
+ public void set(quickfix.field.MDUpdateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDUpdateAction get(quickfix.field.MDUpdateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDUpdateAction getMDUpdateAction() throws FieldNotFound {
+ return get(new quickfix.field.MDUpdateAction());
+ }
+
+ public boolean isSet(quickfix.field.MDUpdateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDUpdateAction() {
+ return isSetField(279);
+ }
+
+ public void set(quickfix.field.DeleteReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeleteReason get(quickfix.field.DeleteReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeleteReason getDeleteReason() throws FieldNotFound {
+ return get(new quickfix.field.DeleteReason());
+ }
+
+ public boolean isSet(quickfix.field.DeleteReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeleteReason() {
+ return isSetField(285);
+ }
+
+ public void set(quickfix.field.MDEntryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryType get(quickfix.field.MDEntryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryType getMDEntryType() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryType());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryType() {
+ return isSetField(269);
+ }
+
+ public void set(quickfix.field.MDEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryID get(quickfix.field.MDEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryID getMDEntryID() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryID());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryID() {
+ return isSetField(278);
+ }
+
+ public void set(quickfix.field.MDEntryRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryRefID get(quickfix.field.MDEntryRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryRefID getMDEntryRefID() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryRefID());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryRefID() {
+ return isSetField(280);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.FinancialStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.FinancialStatus get(quickfix.field.FinancialStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FinancialStatus getFinancialStatus() throws FieldNotFound {
+ return get(new quickfix.field.FinancialStatus());
+ }
+
+ public boolean isSet(quickfix.field.FinancialStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFinancialStatus() {
+ return isSetField(291);
+ }
+
+ public void set(quickfix.field.CorporateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CorporateAction get(quickfix.field.CorporateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CorporateAction getCorporateAction() throws FieldNotFound {
+ return get(new quickfix.field.CorporateAction());
+ }
+
+ public boolean isSet(quickfix.field.CorporateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCorporateAction() {
+ return isSetField(292);
+ }
+
+ public void set(quickfix.field.MDEntryPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPx get(quickfix.field.MDEntryPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPx getMDEntryPx() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPx());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPx() {
+ return isSetField(270);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.MDEntrySize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySize get(quickfix.field.MDEntrySize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySize getMDEntrySize() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySize());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySize() {
+ return isSetField(271);
+ }
+
+ public void set(quickfix.field.MDEntryDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryDate get(quickfix.field.MDEntryDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryDate getMDEntryDate() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryDate());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryDate() {
+ return isSetField(272);
+ }
+
+ public void set(quickfix.field.MDEntryTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryTime get(quickfix.field.MDEntryTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryTime getMDEntryTime() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryTime());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryTime() {
+ return isSetField(273);
+ }
+
+ public void set(quickfix.field.TickDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.TickDirection get(quickfix.field.TickDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TickDirection getTickDirection() throws FieldNotFound {
+ return get(new quickfix.field.TickDirection());
+ }
+
+ public boolean isSet(quickfix.field.TickDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTickDirection() {
+ return isSetField(274);
+ }
+
+ public void set(quickfix.field.MDMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDMkt get(quickfix.field.MDMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDMkt getMDMkt() throws FieldNotFound {
+ return get(new quickfix.field.MDMkt());
+ }
+
+ public boolean isSet(quickfix.field.MDMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDMkt() {
+ return isSetField(275);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.QuoteCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteCondition get(quickfix.field.QuoteCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteCondition getQuoteCondition() throws FieldNotFound {
+ return get(new quickfix.field.QuoteCondition());
+ }
+
+ public boolean isSet(quickfix.field.QuoteCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteCondition() {
+ return isSetField(276);
+ }
+
+ public void set(quickfix.field.TradeCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeCondition get(quickfix.field.TradeCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeCondition getTradeCondition() throws FieldNotFound {
+ return get(new quickfix.field.TradeCondition());
+ }
+
+ public boolean isSet(quickfix.field.TradeCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeCondition() {
+ return isSetField(277);
+ }
+
+ public void set(quickfix.field.MDEntryOriginator value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryOriginator get(quickfix.field.MDEntryOriginator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryOriginator getMDEntryOriginator() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryOriginator());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryOriginator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryOriginator() {
+ return isSetField(282);
+ }
+
+ public void set(quickfix.field.LocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocationID get(quickfix.field.LocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocationID getLocationID() throws FieldNotFound {
+ return get(new quickfix.field.LocationID());
+ }
+
+ public boolean isSet(quickfix.field.LocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocationID() {
+ return isSetField(283);
+ }
+
+ public void set(quickfix.field.DeskID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeskID get(quickfix.field.DeskID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeskID getDeskID() throws FieldNotFound {
+ return get(new quickfix.field.DeskID());
+ }
+
+ public boolean isSet(quickfix.field.DeskID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeskID() {
+ return isSetField(284);
+ }
+
+ public void set(quickfix.field.OpenCloseSettlFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenCloseSettlFlag get(quickfix.field.OpenCloseSettlFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenCloseSettlFlag getOpenCloseSettlFlag() throws FieldNotFound {
+ return get(new quickfix.field.OpenCloseSettlFlag());
+ }
+
+ public boolean isSet(quickfix.field.OpenCloseSettlFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenCloseSettlFlag() {
+ return isSetField(286);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.SellerDays value) {
+ setField(value);
+ }
+
+ public quickfix.field.SellerDays get(quickfix.field.SellerDays value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SellerDays getSellerDays() throws FieldNotFound {
+ return get(new quickfix.field.SellerDays());
+ }
+
+ public boolean isSet(quickfix.field.SellerDays field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSellerDays() {
+ return isSetField(287);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.field.MDEntryBuyer value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryBuyer get(quickfix.field.MDEntryBuyer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryBuyer getMDEntryBuyer() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryBuyer());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryBuyer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryBuyer() {
+ return isSetField(288);
+ }
+
+ public void set(quickfix.field.MDEntrySeller value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySeller get(quickfix.field.MDEntrySeller value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySeller getMDEntrySeller() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySeller());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySeller field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySeller() {
+ return isSetField(289);
+ }
+
+ public void set(quickfix.field.NumberOfOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumberOfOrders get(quickfix.field.NumberOfOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumberOfOrders getNumberOfOrders() throws FieldNotFound {
+ return get(new quickfix.field.NumberOfOrders());
+ }
+
+ public boolean isSet(quickfix.field.NumberOfOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumberOfOrders() {
+ return isSetField(346);
+ }
+
+ public void set(quickfix.field.MDEntryPositionNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPositionNo get(quickfix.field.MDEntryPositionNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPositionNo getMDEntryPositionNo() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPositionNo());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPositionNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPositionNo() {
+ return isSetField(290);
+ }
+
+ public void set(quickfix.field.Scope value) {
+ setField(value);
+ }
+
+ public quickfix.field.Scope get(quickfix.field.Scope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Scope getScope() throws FieldNotFound {
+ return get(new quickfix.field.Scope());
+ }
+
+ public boolean isSet(quickfix.field.Scope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetScope() {
+ return isSetField(546);
+ }
+
+ public void set(quickfix.field.PriceDelta value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceDelta get(quickfix.field.PriceDelta value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceDelta getPriceDelta() throws FieldNotFound {
+ return get(new quickfix.field.PriceDelta());
+ }
+
+ public boolean isSet(quickfix.field.PriceDelta field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceDelta() {
+ return isSetField(811);
+ }
+
+ public void set(quickfix.field.NetChgPrevDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetChgPrevDay get(quickfix.field.NetChgPrevDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetChgPrevDay getNetChgPrevDay() throws FieldNotFound {
+ return get(new quickfix.field.NetChgPrevDay());
+ }
+
+ public boolean isSet(quickfix.field.NetChgPrevDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetChgPrevDay() {
+ return isSetField(451);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.field.ApplQueueDepth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ApplQueueDepth get(quickfix.field.ApplQueueDepth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ApplQueueDepth getApplQueueDepth() throws FieldNotFound {
+ return get(new quickfix.field.ApplQueueDepth());
+ }
+
+ public boolean isSet(quickfix.field.ApplQueueDepth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetApplQueueDepth() {
+ return isSetField(813);
+ }
+
+ public void set(quickfix.field.ApplQueueResolution value) {
+ setField(value);
+ }
+
+ public quickfix.field.ApplQueueResolution get(quickfix.field.ApplQueueResolution value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ApplQueueResolution getApplQueueResolution() throws FieldNotFound {
+ return get(new quickfix.field.ApplQueueResolution());
+ }
+
+ public boolean isSet(quickfix.field.ApplQueueResolution field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetApplQueueResolution() {
+ return isSetField(814);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataRequest.java
new file mode 100644
index 000000000..c5dc27f1f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataRequest.java
@@ -0,0 +1,3592 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "V";
+
+
+ public MarketDataRequest() {
+
+ super(new int[] {262, 263, 264, 265, 266, 286, 546, 547, 267, 146, 386, 815, 812, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MarketDataRequest(quickfix.field.MDReqID mDReqID, quickfix.field.SubscriptionRequestType subscriptionRequestType, quickfix.field.MarketDepth marketDepth) {
+ this();
+ setField(mDReqID);
+ setField(subscriptionRequestType);
+ setField(marketDepth);
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.MarketDepth value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarketDepth get(quickfix.field.MarketDepth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarketDepth getMarketDepth() throws FieldNotFound {
+ return get(new quickfix.field.MarketDepth());
+ }
+
+ public boolean isSet(quickfix.field.MarketDepth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarketDepth() {
+ return isSetField(264);
+ }
+
+ public void set(quickfix.field.MDUpdateType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDUpdateType get(quickfix.field.MDUpdateType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDUpdateType getMDUpdateType() throws FieldNotFound {
+ return get(new quickfix.field.MDUpdateType());
+ }
+
+ public boolean isSet(quickfix.field.MDUpdateType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDUpdateType() {
+ return isSetField(265);
+ }
+
+ public void set(quickfix.field.AggregatedBook value) {
+ setField(value);
+ }
+
+ public quickfix.field.AggregatedBook get(quickfix.field.AggregatedBook value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AggregatedBook getAggregatedBook() throws FieldNotFound {
+ return get(new quickfix.field.AggregatedBook());
+ }
+
+ public boolean isSet(quickfix.field.AggregatedBook field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAggregatedBook() {
+ return isSetField(266);
+ }
+
+ public void set(quickfix.field.OpenCloseSettlFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenCloseSettlFlag get(quickfix.field.OpenCloseSettlFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenCloseSettlFlag getOpenCloseSettlFlag() throws FieldNotFound {
+ return get(new quickfix.field.OpenCloseSettlFlag());
+ }
+
+ public boolean isSet(quickfix.field.OpenCloseSettlFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenCloseSettlFlag() {
+ return isSetField(286);
+ }
+
+ public void set(quickfix.field.Scope value) {
+ setField(value);
+ }
+
+ public quickfix.field.Scope get(quickfix.field.Scope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Scope getScope() throws FieldNotFound {
+ return get(new quickfix.field.Scope());
+ }
+
+ public boolean isSet(quickfix.field.Scope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetScope() {
+ return isSetField(546);
+ }
+
+ public void set(quickfix.field.MDImplicitDelete value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDImplicitDelete get(quickfix.field.MDImplicitDelete value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDImplicitDelete getMDImplicitDelete() throws FieldNotFound {
+ return get(new quickfix.field.MDImplicitDelete());
+ }
+
+ public boolean isSet(quickfix.field.MDImplicitDelete field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDImplicitDelete() {
+ return isSetField(547);
+ }
+
+ public void set(quickfix.field.NoMDEntryTypes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMDEntryTypes get(quickfix.field.NoMDEntryTypes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMDEntryTypes getNoMDEntryTypes() throws FieldNotFound {
+ return get(new quickfix.field.NoMDEntryTypes());
+ }
+
+ public boolean isSet(quickfix.field.NoMDEntryTypes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMDEntryTypes() {
+ return isSetField(267);
+ }
+
+ public static class NoMDEntryTypes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {269, 0};
+
+ public NoMDEntryTypes() {
+ super(267, 269, ORDER);
+ }
+
+ public void set(quickfix.field.MDEntryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryType get(quickfix.field.MDEntryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryType getMDEntryType() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryType());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryType() {
+ return isSetField(269);
+ }
+
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ApplQueueAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.ApplQueueAction get(quickfix.field.ApplQueueAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ApplQueueAction getApplQueueAction() throws FieldNotFound {
+ return get(new quickfix.field.ApplQueueAction());
+ }
+
+ public boolean isSet(quickfix.field.ApplQueueAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetApplQueueAction() {
+ return isSetField(815);
+ }
+
+ public void set(quickfix.field.ApplQueueMax value) {
+ setField(value);
+ }
+
+ public quickfix.field.ApplQueueMax get(quickfix.field.ApplQueueMax value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ApplQueueMax getApplQueueMax() throws FieldNotFound {
+ return get(new quickfix.field.ApplQueueMax());
+ }
+
+ public boolean isSet(quickfix.field.ApplQueueMax field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetApplQueueMax() {
+ return isSetField(812);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataRequestReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataRequestReject.java
new file mode 100644
index 000000000..2b2a4783e
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataRequestReject.java
@@ -0,0 +1,184 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataRequestReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "Y";
+
+
+ public MarketDataRequestReject() {
+
+ super(new int[] {262, 281, 816, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MarketDataRequestReject(quickfix.field.MDReqID mDReqID) {
+ this();
+ setField(mDReqID);
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.field.MDReqRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqRejReason get(quickfix.field.MDReqRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqRejReason getMDReqRejReason() throws FieldNotFound {
+ return get(new quickfix.field.MDReqRejReason());
+ }
+
+ public boolean isSet(quickfix.field.MDReqRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqRejReason() {
+ return isSetField(281);
+ }
+
+ public void set(quickfix.field.NoAltMDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAltMDSource get(quickfix.field.NoAltMDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAltMDSource getNoAltMDSource() throws FieldNotFound {
+ return get(new quickfix.field.NoAltMDSource());
+ }
+
+ public boolean isSet(quickfix.field.NoAltMDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAltMDSource() {
+ return isSetField(816);
+ }
+
+ public static class NoAltMDSource extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {817, 0};
+
+ public NoAltMDSource() {
+ super(816, 817, ORDER);
+ }
+
+ public void set(quickfix.field.AltMDSourceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AltMDSourceID get(quickfix.field.AltMDSourceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AltMDSourceID getAltMDSourceID() throws FieldNotFound {
+ return get(new quickfix.field.AltMDSourceID());
+ }
+
+ public boolean isSet(quickfix.field.AltMDSourceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAltMDSourceID() {
+ return isSetField(817);
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataSnapshotFullRefresh.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataSnapshotFullRefresh.java
new file mode 100644
index 000000000..eeeb955a4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MarketDataSnapshotFullRefresh.java
@@ -0,0 +1,4067 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MarketDataSnapshotFullRefresh extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "W";
+
+
+ public MarketDataSnapshotFullRefresh() {
+
+ super(new int[] {262, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 291, 292, 451, 268, 813, 814, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.MDReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDReqID get(quickfix.field.MDReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDReqID getMDReqID() throws FieldNotFound {
+ return get(new quickfix.field.MDReqID());
+ }
+
+ public boolean isSet(quickfix.field.MDReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDReqID() {
+ return isSetField(262);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.FinancialStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.FinancialStatus get(quickfix.field.FinancialStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FinancialStatus getFinancialStatus() throws FieldNotFound {
+ return get(new quickfix.field.FinancialStatus());
+ }
+
+ public boolean isSet(quickfix.field.FinancialStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFinancialStatus() {
+ return isSetField(291);
+ }
+
+ public void set(quickfix.field.CorporateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CorporateAction get(quickfix.field.CorporateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CorporateAction getCorporateAction() throws FieldNotFound {
+ return get(new quickfix.field.CorporateAction());
+ }
+
+ public boolean isSet(quickfix.field.CorporateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCorporateAction() {
+ return isSetField(292);
+ }
+
+ public void set(quickfix.field.NetChgPrevDay value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetChgPrevDay get(quickfix.field.NetChgPrevDay value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetChgPrevDay getNetChgPrevDay() throws FieldNotFound {
+ return get(new quickfix.field.NetChgPrevDay());
+ }
+
+ public boolean isSet(quickfix.field.NetChgPrevDay field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetChgPrevDay() {
+ return isSetField(451);
+ }
+
+ public void set(quickfix.field.NoMDEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMDEntries get(quickfix.field.NoMDEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMDEntries getNoMDEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoMDEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoMDEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMDEntries() {
+ return isSetField(268);
+ }
+
+ public static class NoMDEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {269, 270, 15, 271, 272, 273, 274, 275, 336, 625, 276, 277, 282, 283, 284, 286, 59, 432, 126, 110, 18, 287, 37, 299, 288, 289, 346, 290, 546, 811, 58, 354, 355, 0};
+
+ public NoMDEntries() {
+ super(268, 269, ORDER);
+ }
+
+ public void set(quickfix.field.MDEntryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryType get(quickfix.field.MDEntryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryType getMDEntryType() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryType());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryType() {
+ return isSetField(269);
+ }
+
+ public void set(quickfix.field.MDEntryPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPx get(quickfix.field.MDEntryPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPx getMDEntryPx() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPx());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPx() {
+ return isSetField(270);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.MDEntrySize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySize get(quickfix.field.MDEntrySize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySize getMDEntrySize() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySize());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySize() {
+ return isSetField(271);
+ }
+
+ public void set(quickfix.field.MDEntryDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryDate get(quickfix.field.MDEntryDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryDate getMDEntryDate() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryDate());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryDate() {
+ return isSetField(272);
+ }
+
+ public void set(quickfix.field.MDEntryTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryTime get(quickfix.field.MDEntryTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryTime getMDEntryTime() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryTime());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryTime() {
+ return isSetField(273);
+ }
+
+ public void set(quickfix.field.TickDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.TickDirection get(quickfix.field.TickDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TickDirection getTickDirection() throws FieldNotFound {
+ return get(new quickfix.field.TickDirection());
+ }
+
+ public boolean isSet(quickfix.field.TickDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTickDirection() {
+ return isSetField(274);
+ }
+
+ public void set(quickfix.field.MDMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDMkt get(quickfix.field.MDMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDMkt getMDMkt() throws FieldNotFound {
+ return get(new quickfix.field.MDMkt());
+ }
+
+ public boolean isSet(quickfix.field.MDMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDMkt() {
+ return isSetField(275);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.QuoteCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteCondition get(quickfix.field.QuoteCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteCondition getQuoteCondition() throws FieldNotFound {
+ return get(new quickfix.field.QuoteCondition());
+ }
+
+ public boolean isSet(quickfix.field.QuoteCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteCondition() {
+ return isSetField(276);
+ }
+
+ public void set(quickfix.field.TradeCondition value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeCondition get(quickfix.field.TradeCondition value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeCondition getTradeCondition() throws FieldNotFound {
+ return get(new quickfix.field.TradeCondition());
+ }
+
+ public boolean isSet(quickfix.field.TradeCondition field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeCondition() {
+ return isSetField(277);
+ }
+
+ public void set(quickfix.field.MDEntryOriginator value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryOriginator get(quickfix.field.MDEntryOriginator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryOriginator getMDEntryOriginator() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryOriginator());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryOriginator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryOriginator() {
+ return isSetField(282);
+ }
+
+ public void set(quickfix.field.LocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocationID get(quickfix.field.LocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocationID getLocationID() throws FieldNotFound {
+ return get(new quickfix.field.LocationID());
+ }
+
+ public boolean isSet(quickfix.field.LocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocationID() {
+ return isSetField(283);
+ }
+
+ public void set(quickfix.field.DeskID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeskID get(quickfix.field.DeskID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeskID getDeskID() throws FieldNotFound {
+ return get(new quickfix.field.DeskID());
+ }
+
+ public boolean isSet(quickfix.field.DeskID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeskID() {
+ return isSetField(284);
+ }
+
+ public void set(quickfix.field.OpenCloseSettlFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.OpenCloseSettlFlag get(quickfix.field.OpenCloseSettlFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OpenCloseSettlFlag getOpenCloseSettlFlag() throws FieldNotFound {
+ return get(new quickfix.field.OpenCloseSettlFlag());
+ }
+
+ public boolean isSet(quickfix.field.OpenCloseSettlFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOpenCloseSettlFlag() {
+ return isSetField(286);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.SellerDays value) {
+ setField(value);
+ }
+
+ public quickfix.field.SellerDays get(quickfix.field.SellerDays value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SellerDays getSellerDays() throws FieldNotFound {
+ return get(new quickfix.field.SellerDays());
+ }
+
+ public boolean isSet(quickfix.field.SellerDays field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSellerDays() {
+ return isSetField(287);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.field.MDEntryBuyer value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryBuyer get(quickfix.field.MDEntryBuyer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryBuyer getMDEntryBuyer() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryBuyer());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryBuyer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryBuyer() {
+ return isSetField(288);
+ }
+
+ public void set(quickfix.field.MDEntrySeller value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntrySeller get(quickfix.field.MDEntrySeller value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntrySeller getMDEntrySeller() throws FieldNotFound {
+ return get(new quickfix.field.MDEntrySeller());
+ }
+
+ public boolean isSet(quickfix.field.MDEntrySeller field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntrySeller() {
+ return isSetField(289);
+ }
+
+ public void set(quickfix.field.NumberOfOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumberOfOrders get(quickfix.field.NumberOfOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumberOfOrders getNumberOfOrders() throws FieldNotFound {
+ return get(new quickfix.field.NumberOfOrders());
+ }
+
+ public boolean isSet(quickfix.field.NumberOfOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumberOfOrders() {
+ return isSetField(346);
+ }
+
+ public void set(quickfix.field.MDEntryPositionNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.MDEntryPositionNo get(quickfix.field.MDEntryPositionNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MDEntryPositionNo getMDEntryPositionNo() throws FieldNotFound {
+ return get(new quickfix.field.MDEntryPositionNo());
+ }
+
+ public boolean isSet(quickfix.field.MDEntryPositionNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMDEntryPositionNo() {
+ return isSetField(290);
+ }
+
+ public void set(quickfix.field.Scope value) {
+ setField(value);
+ }
+
+ public quickfix.field.Scope get(quickfix.field.Scope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Scope getScope() throws FieldNotFound {
+ return get(new quickfix.field.Scope());
+ }
+
+ public boolean isSet(quickfix.field.Scope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetScope() {
+ return isSetField(546);
+ }
+
+ public void set(quickfix.field.PriceDelta value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceDelta get(quickfix.field.PriceDelta value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceDelta getPriceDelta() throws FieldNotFound {
+ return get(new quickfix.field.PriceDelta());
+ }
+
+ public boolean isSet(quickfix.field.PriceDelta field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceDelta() {
+ return isSetField(811);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.field.ApplQueueDepth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ApplQueueDepth get(quickfix.field.ApplQueueDepth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ApplQueueDepth getApplQueueDepth() throws FieldNotFound {
+ return get(new quickfix.field.ApplQueueDepth());
+ }
+
+ public boolean isSet(quickfix.field.ApplQueueDepth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetApplQueueDepth() {
+ return isSetField(813);
+ }
+
+ public void set(quickfix.field.ApplQueueResolution value) {
+ setField(value);
+ }
+
+ public quickfix.field.ApplQueueResolution get(quickfix.field.ApplQueueResolution value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ApplQueueResolution getApplQueueResolution() throws FieldNotFound {
+ return get(new quickfix.field.ApplQueueResolution());
+ }
+
+ public boolean isSet(quickfix.field.ApplQueueResolution field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetApplQueueResolution() {
+ return isSetField(814);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MassQuote.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MassQuote.java
new file mode 100644
index 000000000..446423e91
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MassQuote.java
@@ -0,0 +1,4212 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MassQuote extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "i";
+
+
+ public MassQuote() {
+
+ super(new int[] {131, 117, 537, 301, 453, 1, 660, 581, 293, 294, 296, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MassQuote(quickfix.field.QuoteID quoteID) {
+ this();
+ setField(quoteID);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DefBidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.DefBidSize get(quickfix.field.DefBidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DefBidSize getDefBidSize() throws FieldNotFound {
+ return get(new quickfix.field.DefBidSize());
+ }
+
+ public boolean isSet(quickfix.field.DefBidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDefBidSize() {
+ return isSetField(293);
+ }
+
+ public void set(quickfix.field.DefOfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.DefOfferSize get(quickfix.field.DefOfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DefOfferSize getDefOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.DefOfferSize());
+ }
+
+ public boolean isSet(quickfix.field.DefOfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDefOfferSize() {
+ return isSetField(294);
+ }
+
+ public void set(quickfix.field.NoQuoteSets value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteSets get(quickfix.field.NoQuoteSets value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteSets getNoQuoteSets() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteSets());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteSets field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteSets() {
+ return isSetField(296);
+ }
+
+ public static class NoQuoteSets extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {302, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 367, 304, 893, 295, 0};
+
+ public NoQuoteSets() {
+ super(296, 302, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteSetID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteSetID get(quickfix.field.QuoteSetID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteSetID getQuoteSetID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteSetID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteSetID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteSetID() {
+ return isSetField(302);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.QuoteSetValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteSetValidUntilTime get(quickfix.field.QuoteSetValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteSetValidUntilTime getQuoteSetValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.QuoteSetValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.QuoteSetValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteSetValidUntilTime() {
+ return isSetField(367);
+ }
+
+ public void set(quickfix.field.TotNoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoQuoteEntries get(quickfix.field.TotNoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoQuoteEntries getTotNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.TotNoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.TotNoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoQuoteEntries() {
+ return isSetField(304);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteEntries get(quickfix.field.NoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteEntries getNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteEntries() {
+ return isSetField(295);
+ }
+
+ public static class NoQuoteEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {299, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 555, 132, 133, 134, 135, 62, 188, 190, 189, 191, 631, 632, 633, 634, 60, 336, 625, 64, 40, 193, 192, 642, 643, 15, 0};
+
+ public NoQuoteEntries() {
+ super(295, 299, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.MidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidPx get(quickfix.field.MidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidPx getMidPx() throws FieldNotFound {
+ return get(new quickfix.field.MidPx());
+ }
+
+ public boolean isSet(quickfix.field.MidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidPx() {
+ return isSetField(631);
+ }
+
+ public void set(quickfix.field.BidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidYield get(quickfix.field.BidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidYield getBidYield() throws FieldNotFound {
+ return get(new quickfix.field.BidYield());
+ }
+
+ public boolean isSet(quickfix.field.BidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidYield() {
+ return isSetField(632);
+ }
+
+ public void set(quickfix.field.MidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidYield get(quickfix.field.MidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidYield getMidYield() throws FieldNotFound {
+ return get(new quickfix.field.MidYield());
+ }
+
+ public boolean isSet(quickfix.field.MidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidYield() {
+ return isSetField(633);
+ }
+
+ public void set(quickfix.field.OfferYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferYield get(quickfix.field.OfferYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferYield getOfferYield() throws FieldNotFound {
+ return get(new quickfix.field.OfferYield());
+ }
+
+ public boolean isSet(quickfix.field.OfferYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferYield() {
+ return isSetField(634);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.BidForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints2 get(quickfix.field.BidForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints2 getBidForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints2() {
+ return isSetField(642);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints2 get(quickfix.field.OfferForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints2 getOfferForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints2() {
+ return isSetField(643);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MassQuoteAcknowledgement.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MassQuoteAcknowledgement.java
new file mode 100644
index 000000000..5cbec2644
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MassQuoteAcknowledgement.java
@@ -0,0 +1,4275 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MassQuoteAcknowledgement extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "b";
+
+
+ public MassQuoteAcknowledgement() {
+
+ super(new int[] {131, 117, 297, 300, 301, 537, 453, 1, 660, 581, 58, 354, 355, 296, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MassQuoteAcknowledgement(quickfix.field.QuoteStatus quoteStatus) {
+ this();
+ setField(quoteStatus);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteStatus get(quickfix.field.QuoteStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteStatus getQuoteStatus() throws FieldNotFound {
+ return get(new quickfix.field.QuoteStatus());
+ }
+
+ public boolean isSet(quickfix.field.QuoteStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteStatus() {
+ return isSetField(297);
+ }
+
+ public void set(quickfix.field.QuoteRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRejectReason get(quickfix.field.QuoteRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRejectReason getQuoteRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRejectReason() {
+ return isSetField(300);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NoQuoteSets value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteSets get(quickfix.field.NoQuoteSets value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteSets getNoQuoteSets() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteSets());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteSets field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteSets() {
+ return isSetField(296);
+ }
+
+ public static class NoQuoteSets extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {302, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 304, 893, 295, 0};
+
+ public NoQuoteSets() {
+ super(296, 302, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteSetID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteSetID get(quickfix.field.QuoteSetID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteSetID getQuoteSetID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteSetID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteSetID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteSetID() {
+ return isSetField(302);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.TotNoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoQuoteEntries get(quickfix.field.TotNoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoQuoteEntries getTotNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.TotNoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.TotNoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoQuoteEntries() {
+ return isSetField(304);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteEntries get(quickfix.field.NoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteEntries getNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteEntries() {
+ return isSetField(295);
+ }
+
+ public static class NoQuoteEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {299, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 555, 132, 133, 134, 135, 62, 188, 190, 189, 191, 631, 632, 633, 634, 60, 336, 625, 64, 40, 193, 192, 642, 643, 15, 368, 0};
+
+ public NoQuoteEntries() {
+ super(295, 299, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteEntryID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryID get(quickfix.field.QuoteEntryID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryID getQuoteEntryID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryID() {
+ return isSetField(299);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.MidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidPx get(quickfix.field.MidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidPx getMidPx() throws FieldNotFound {
+ return get(new quickfix.field.MidPx());
+ }
+
+ public boolean isSet(quickfix.field.MidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidPx() {
+ return isSetField(631);
+ }
+
+ public void set(quickfix.field.BidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidYield get(quickfix.field.BidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidYield getBidYield() throws FieldNotFound {
+ return get(new quickfix.field.BidYield());
+ }
+
+ public boolean isSet(quickfix.field.BidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidYield() {
+ return isSetField(632);
+ }
+
+ public void set(quickfix.field.MidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidYield get(quickfix.field.MidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidYield getMidYield() throws FieldNotFound {
+ return get(new quickfix.field.MidYield());
+ }
+
+ public boolean isSet(quickfix.field.MidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidYield() {
+ return isSetField(633);
+ }
+
+ public void set(quickfix.field.OfferYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferYield get(quickfix.field.OfferYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferYield getOfferYield() throws FieldNotFound {
+ return get(new quickfix.field.OfferYield());
+ }
+
+ public boolean isSet(quickfix.field.OfferYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferYield() {
+ return isSetField(634);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.BidForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints2 get(quickfix.field.BidForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints2 getBidForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints2() {
+ return isSetField(642);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints2 get(quickfix.field.OfferForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints2 getOfferForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints2() {
+ return isSetField(643);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.QuoteEntryRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteEntryRejectReason get(quickfix.field.QuoteEntryRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteEntryRejectReason getQuoteEntryRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.QuoteEntryRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.QuoteEntryRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteEntryRejectReason() {
+ return isSetField(368);
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Message.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Message.java
new file mode 100644
index 000000000..763c42333
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Message.java
@@ -0,0 +1,768 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.field.*;
+
+import quickfix.Group;
+
+public class Message extends quickfix.Message {
+
+ static final long serialVersionUID = 20050617;
+
+ public Message() {
+ this(null);
+ }
+
+ protected Message(int[] fieldOrder) {
+ super(fieldOrder);
+
+ getHeader().setField(new BeginString("FIX.4.4"));
+
+ }
+
+ @Override
+ protected Header newHeader() {
+ return new Header(this);
+ }
+
+ @Override
+ public Header getHeader() {
+ return (Message.Header)header;
+ }
+
+ public static class Header extends quickfix.Message.Header {
+
+ static final long serialVersionUID = 20050617;
+
+ public Header(Message msg) {
+ // JNI compatibility
+ }
+
+ public void set(quickfix.field.BeginString value) {
+ setField(value);
+ }
+
+ public quickfix.field.BeginString get(quickfix.field.BeginString value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BeginString getBeginString() throws FieldNotFound {
+ return get(new quickfix.field.BeginString());
+ }
+
+ public boolean isSet(quickfix.field.BeginString field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBeginString() {
+ return isSetField(8);
+ }
+
+ public void set(quickfix.field.BodyLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.BodyLength get(quickfix.field.BodyLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BodyLength getBodyLength() throws FieldNotFound {
+ return get(new quickfix.field.BodyLength());
+ }
+
+ public boolean isSet(quickfix.field.BodyLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBodyLength() {
+ return isSetField(9);
+ }
+
+ public void set(quickfix.field.MsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MsgType get(quickfix.field.MsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MsgType getMsgType() throws FieldNotFound {
+ return get(new quickfix.field.MsgType());
+ }
+
+ public boolean isSet(quickfix.field.MsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMsgType() {
+ return isSetField(35);
+ }
+
+ public void set(quickfix.field.SenderCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SenderCompID get(quickfix.field.SenderCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SenderCompID getSenderCompID() throws FieldNotFound {
+ return get(new quickfix.field.SenderCompID());
+ }
+
+ public boolean isSet(quickfix.field.SenderCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSenderCompID() {
+ return isSetField(49);
+ }
+
+ public void set(quickfix.field.TargetCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetCompID get(quickfix.field.TargetCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetCompID getTargetCompID() throws FieldNotFound {
+ return get(new quickfix.field.TargetCompID());
+ }
+
+ public boolean isSet(quickfix.field.TargetCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetCompID() {
+ return isSetField(56);
+ }
+
+ public void set(quickfix.field.OnBehalfOfCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfCompID get(quickfix.field.OnBehalfOfCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfCompID getOnBehalfOfCompID() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfCompID());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfCompID() {
+ return isSetField(115);
+ }
+
+ public void set(quickfix.field.DeliverToCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliverToCompID get(quickfix.field.DeliverToCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliverToCompID getDeliverToCompID() throws FieldNotFound {
+ return get(new quickfix.field.DeliverToCompID());
+ }
+
+ public boolean isSet(quickfix.field.DeliverToCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliverToCompID() {
+ return isSetField(128);
+ }
+
+ public void set(quickfix.field.SecureDataLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecureDataLen get(quickfix.field.SecureDataLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecureDataLen getSecureDataLen() throws FieldNotFound {
+ return get(new quickfix.field.SecureDataLen());
+ }
+
+ public boolean isSet(quickfix.field.SecureDataLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecureDataLen() {
+ return isSetField(90);
+ }
+
+ public void set(quickfix.field.SecureData value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecureData get(quickfix.field.SecureData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecureData getSecureData() throws FieldNotFound {
+ return get(new quickfix.field.SecureData());
+ }
+
+ public boolean isSet(quickfix.field.SecureData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecureData() {
+ return isSetField(91);
+ }
+
+ public void set(quickfix.field.MsgSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.MsgSeqNum get(quickfix.field.MsgSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MsgSeqNum getMsgSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.MsgSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.MsgSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMsgSeqNum() {
+ return isSetField(34);
+ }
+
+ public void set(quickfix.field.SenderSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SenderSubID get(quickfix.field.SenderSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SenderSubID getSenderSubID() throws FieldNotFound {
+ return get(new quickfix.field.SenderSubID());
+ }
+
+ public boolean isSet(quickfix.field.SenderSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSenderSubID() {
+ return isSetField(50);
+ }
+
+ public void set(quickfix.field.SenderLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SenderLocationID get(quickfix.field.SenderLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SenderLocationID getSenderLocationID() throws FieldNotFound {
+ return get(new quickfix.field.SenderLocationID());
+ }
+
+ public boolean isSet(quickfix.field.SenderLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSenderLocationID() {
+ return isSetField(142);
+ }
+
+ public void set(quickfix.field.TargetSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetSubID get(quickfix.field.TargetSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetSubID getTargetSubID() throws FieldNotFound {
+ return get(new quickfix.field.TargetSubID());
+ }
+
+ public boolean isSet(quickfix.field.TargetSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetSubID() {
+ return isSetField(57);
+ }
+
+ public void set(quickfix.field.TargetLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetLocationID get(quickfix.field.TargetLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetLocationID getTargetLocationID() throws FieldNotFound {
+ return get(new quickfix.field.TargetLocationID());
+ }
+
+ public boolean isSet(quickfix.field.TargetLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetLocationID() {
+ return isSetField(143);
+ }
+
+ public void set(quickfix.field.OnBehalfOfSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfSubID get(quickfix.field.OnBehalfOfSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfSubID getOnBehalfOfSubID() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfSubID());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfSubID() {
+ return isSetField(116);
+ }
+
+ public void set(quickfix.field.OnBehalfOfLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OnBehalfOfLocationID get(quickfix.field.OnBehalfOfLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OnBehalfOfLocationID getOnBehalfOfLocationID() throws FieldNotFound {
+ return get(new quickfix.field.OnBehalfOfLocationID());
+ }
+
+ public boolean isSet(quickfix.field.OnBehalfOfLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOnBehalfOfLocationID() {
+ return isSetField(144);
+ }
+
+ public void set(quickfix.field.DeliverToSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliverToSubID get(quickfix.field.DeliverToSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliverToSubID getDeliverToSubID() throws FieldNotFound {
+ return get(new quickfix.field.DeliverToSubID());
+ }
+
+ public boolean isSet(quickfix.field.DeliverToSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliverToSubID() {
+ return isSetField(129);
+ }
+
+ public void set(quickfix.field.DeliverToLocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliverToLocationID get(quickfix.field.DeliverToLocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliverToLocationID getDeliverToLocationID() throws FieldNotFound {
+ return get(new quickfix.field.DeliverToLocationID());
+ }
+
+ public boolean isSet(quickfix.field.DeliverToLocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliverToLocationID() {
+ return isSetField(145);
+ }
+
+ public void set(quickfix.field.PossDupFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.PossDupFlag get(quickfix.field.PossDupFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PossDupFlag getPossDupFlag() throws FieldNotFound {
+ return get(new quickfix.field.PossDupFlag());
+ }
+
+ public boolean isSet(quickfix.field.PossDupFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPossDupFlag() {
+ return isSetField(43);
+ }
+
+ public void set(quickfix.field.PossResend value) {
+ setField(value);
+ }
+
+ public quickfix.field.PossResend get(quickfix.field.PossResend value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PossResend getPossResend() throws FieldNotFound {
+ return get(new quickfix.field.PossResend());
+ }
+
+ public boolean isSet(quickfix.field.PossResend field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPossResend() {
+ return isSetField(97);
+ }
+
+ public void set(quickfix.field.SendingTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.SendingTime get(quickfix.field.SendingTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SendingTime getSendingTime() throws FieldNotFound {
+ return get(new quickfix.field.SendingTime());
+ }
+
+ public boolean isSet(quickfix.field.SendingTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSendingTime() {
+ return isSetField(52);
+ }
+
+ public void set(quickfix.field.OrigSendingTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigSendingTime get(quickfix.field.OrigSendingTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigSendingTime getOrigSendingTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigSendingTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigSendingTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigSendingTime() {
+ return isSetField(122);
+ }
+
+ public void set(quickfix.field.XmlDataLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.XmlDataLen get(quickfix.field.XmlDataLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.XmlDataLen getXmlDataLen() throws FieldNotFound {
+ return get(new quickfix.field.XmlDataLen());
+ }
+
+ public boolean isSet(quickfix.field.XmlDataLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetXmlDataLen() {
+ return isSetField(212);
+ }
+
+ public void set(quickfix.field.XmlData value) {
+ setField(value);
+ }
+
+ public quickfix.field.XmlData get(quickfix.field.XmlData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.XmlData getXmlData() throws FieldNotFound {
+ return get(new quickfix.field.XmlData());
+ }
+
+ public boolean isSet(quickfix.field.XmlData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetXmlData() {
+ return isSetField(213);
+ }
+
+ public void set(quickfix.field.MessageEncoding value) {
+ setField(value);
+ }
+
+ public quickfix.field.MessageEncoding get(quickfix.field.MessageEncoding value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MessageEncoding getMessageEncoding() throws FieldNotFound {
+ return get(new quickfix.field.MessageEncoding());
+ }
+
+ public boolean isSet(quickfix.field.MessageEncoding field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMessageEncoding() {
+ return isSetField(347);
+ }
+
+ public void set(quickfix.field.LastMsgSeqNumProcessed value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMsgSeqNumProcessed get(quickfix.field.LastMsgSeqNumProcessed value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMsgSeqNumProcessed getLastMsgSeqNumProcessed() throws FieldNotFound {
+ return get(new quickfix.field.LastMsgSeqNumProcessed());
+ }
+
+ public boolean isSet(quickfix.field.LastMsgSeqNumProcessed field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMsgSeqNumProcessed() {
+ return isSetField(369);
+ }
+
+ public void set(quickfix.field.NoHops value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoHops get(quickfix.field.NoHops value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoHops getNoHops() throws FieldNotFound {
+ return get(new quickfix.field.NoHops());
+ }
+
+ public boolean isSet(quickfix.field.NoHops field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoHops() {
+ return isSetField(627);
+ }
+
+ public static class NoHops extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {628, 629, 630, 0};
+
+ public NoHops() {
+ super(627, 628, ORDER);
+ }
+
+ public void set(quickfix.field.HopCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.HopCompID get(quickfix.field.HopCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HopCompID getHopCompID() throws FieldNotFound {
+ return get(new quickfix.field.HopCompID());
+ }
+
+ public boolean isSet(quickfix.field.HopCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHopCompID() {
+ return isSetField(628);
+ }
+
+ public void set(quickfix.field.HopSendingTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.HopSendingTime get(quickfix.field.HopSendingTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HopSendingTime getHopSendingTime() throws FieldNotFound {
+ return get(new quickfix.field.HopSendingTime());
+ }
+
+ public boolean isSet(quickfix.field.HopSendingTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHopSendingTime() {
+ return isSetField(629);
+ }
+
+ public void set(quickfix.field.HopRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.HopRefID get(quickfix.field.HopRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HopRefID getHopRefID() throws FieldNotFound {
+ return get(new quickfix.field.HopRefID());
+ }
+
+ public boolean isSet(quickfix.field.HopRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHopRefID() {
+ return isSetField(630);
+ }
+
+ }
+
+ }
+
+
+ public void set(quickfix.field.SignatureLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.SignatureLength get(quickfix.field.SignatureLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SignatureLength getSignatureLength() throws FieldNotFound {
+ return get(new quickfix.field.SignatureLength());
+ }
+
+ public boolean isSet(quickfix.field.SignatureLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSignatureLength() {
+ return isSetField(93);
+ }
+
+ public void set(quickfix.field.Signature value) {
+ setField(value);
+ }
+
+ public quickfix.field.Signature get(quickfix.field.Signature value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Signature getSignature() throws FieldNotFound {
+ return get(new quickfix.field.Signature());
+ }
+
+ public boolean isSet(quickfix.field.Signature field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSignature() {
+ return isSetField(89);
+ }
+
+ public void set(quickfix.field.CheckSum value) {
+ setField(value);
+ }
+
+ public quickfix.field.CheckSum get(quickfix.field.CheckSum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CheckSum getCheckSum() throws FieldNotFound {
+ return get(new quickfix.field.CheckSum());
+ }
+
+ public boolean isSet(quickfix.field.CheckSum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCheckSum() {
+ return isSetField(10);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MessageCracker.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MessageCracker.java
new file mode 100644
index 000000000..a015da6d8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MessageCracker.java
@@ -0,0 +1,1538 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.fix44;
+
+import quickfix.*;
+import quickfix.field.*;
+import java.util.HashMap;
+
+public class MessageCracker {
+
+ private final HashMap methodRegistry = new HashMap<>();
+ private final MessageConsumer defaultFunction = this::onMessage;
+
+ public MessageCracker() {
+
+ methodRegistry.put(Heartbeat.MSGTYPE,
+ (message, sessionID) -> onMessage((Heartbeat) message, sessionID));
+
+ methodRegistry.put(Logon.MSGTYPE,
+ (message, sessionID) -> onMessage((Logon) message, sessionID));
+
+ methodRegistry.put(TestRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((TestRequest) message, sessionID));
+
+ methodRegistry.put(ResendRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ResendRequest) message, sessionID));
+
+ methodRegistry.put(Reject.MSGTYPE,
+ (message, sessionID) -> onMessage((Reject) message, sessionID));
+
+ methodRegistry.put(SequenceReset.MSGTYPE,
+ (message, sessionID) -> onMessage((SequenceReset) message, sessionID));
+
+ methodRegistry.put(Logout.MSGTYPE,
+ (message, sessionID) -> onMessage((Logout) message, sessionID));
+
+ methodRegistry.put(BusinessMessageReject.MSGTYPE,
+ (message, sessionID) -> onMessage((BusinessMessageReject) message, sessionID));
+
+ methodRegistry.put(UserRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((UserRequest) message, sessionID));
+
+ methodRegistry.put(UserResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((UserResponse) message, sessionID));
+
+ methodRegistry.put(Advertisement.MSGTYPE,
+ (message, sessionID) -> onMessage((Advertisement) message, sessionID));
+
+ methodRegistry.put(IndicationOfInterest.MSGTYPE,
+ (message, sessionID) -> onMessage((IndicationOfInterest) message, sessionID));
+
+ methodRegistry.put(News.MSGTYPE,
+ (message, sessionID) -> onMessage((News) message, sessionID));
+
+ methodRegistry.put(Email.MSGTYPE,
+ (message, sessionID) -> onMessage((Email) message, sessionID));
+
+ methodRegistry.put(QuoteRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteRequest) message, sessionID));
+
+ methodRegistry.put(QuoteResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteResponse) message, sessionID));
+
+ methodRegistry.put(QuoteRequestReject.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteRequestReject) message, sessionID));
+
+ methodRegistry.put(RFQRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((RFQRequest) message, sessionID));
+
+ methodRegistry.put(Quote.MSGTYPE,
+ (message, sessionID) -> onMessage((Quote) message, sessionID));
+
+ methodRegistry.put(QuoteCancel.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteCancel) message, sessionID));
+
+ methodRegistry.put(QuoteStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteStatusRequest) message, sessionID));
+
+ methodRegistry.put(QuoteStatusReport.MSGTYPE,
+ (message, sessionID) -> onMessage((QuoteStatusReport) message, sessionID));
+
+ methodRegistry.put(MassQuote.MSGTYPE,
+ (message, sessionID) -> onMessage((MassQuote) message, sessionID));
+
+ methodRegistry.put(MassQuoteAcknowledgement.MSGTYPE,
+ (message, sessionID) -> onMessage((MassQuoteAcknowledgement) message, sessionID));
+
+ methodRegistry.put(MarketDataRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataRequest) message, sessionID));
+
+ methodRegistry.put(MarketDataSnapshotFullRefresh.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataSnapshotFullRefresh) message, sessionID));
+
+ methodRegistry.put(MarketDataIncrementalRefresh.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataIncrementalRefresh) message, sessionID));
+
+ methodRegistry.put(MarketDataRequestReject.MSGTYPE,
+ (message, sessionID) -> onMessage((MarketDataRequestReject) message, sessionID));
+
+ methodRegistry.put(SecurityDefinitionRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityDefinitionRequest) message, sessionID));
+
+ methodRegistry.put(SecurityDefinition.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityDefinition) message, sessionID));
+
+ methodRegistry.put(SecurityTypeRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityTypeRequest) message, sessionID));
+
+ methodRegistry.put(SecurityTypes.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityTypes) message, sessionID));
+
+ methodRegistry.put(SecurityListRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityListRequest) message, sessionID));
+
+ methodRegistry.put(SecurityList.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityList) message, sessionID));
+
+ methodRegistry.put(DerivativeSecurityListRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((DerivativeSecurityListRequest) message, sessionID));
+
+ methodRegistry.put(DerivativeSecurityList.MSGTYPE,
+ (message, sessionID) -> onMessage((DerivativeSecurityList) message, sessionID));
+
+ methodRegistry.put(SecurityStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityStatusRequest) message, sessionID));
+
+ methodRegistry.put(SecurityStatus.MSGTYPE,
+ (message, sessionID) -> onMessage((SecurityStatus) message, sessionID));
+
+ methodRegistry.put(TradingSessionStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((TradingSessionStatusRequest) message, sessionID));
+
+ methodRegistry.put(TradingSessionStatus.MSGTYPE,
+ (message, sessionID) -> onMessage((TradingSessionStatus) message, sessionID));
+
+ methodRegistry.put(NewOrderSingle.MSGTYPE,
+ (message, sessionID) -> onMessage((NewOrderSingle) message, sessionID));
+
+ methodRegistry.put(ExecutionReport.MSGTYPE,
+ (message, sessionID) -> onMessage((ExecutionReport) message, sessionID));
+
+ methodRegistry.put(DontKnowTrade.MSGTYPE,
+ (message, sessionID) -> onMessage((DontKnowTrade) message, sessionID));
+
+ methodRegistry.put(OrderCancelReplaceRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderCancelReplaceRequest) message, sessionID));
+
+ methodRegistry.put(OrderCancelRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderCancelRequest) message, sessionID));
+
+ methodRegistry.put(OrderCancelReject.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderCancelReject) message, sessionID));
+
+ methodRegistry.put(OrderStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderStatusRequest) message, sessionID));
+
+ methodRegistry.put(OrderMassCancelRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderMassCancelRequest) message, sessionID));
+
+ methodRegistry.put(OrderMassCancelReport.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderMassCancelReport) message, sessionID));
+
+ methodRegistry.put(OrderMassStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((OrderMassStatusRequest) message, sessionID));
+
+ methodRegistry.put(NewOrderCross.MSGTYPE,
+ (message, sessionID) -> onMessage((NewOrderCross) message, sessionID));
+
+ methodRegistry.put(CrossOrderCancelReplaceRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((CrossOrderCancelReplaceRequest) message, sessionID));
+
+ methodRegistry.put(CrossOrderCancelRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((CrossOrderCancelRequest) message, sessionID));
+
+ methodRegistry.put(NewOrderMultileg.MSGTYPE,
+ (message, sessionID) -> onMessage((NewOrderMultileg) message, sessionID));
+
+ methodRegistry.put(MultilegOrderCancelReplaceRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((MultilegOrderCancelReplaceRequest) message, sessionID));
+
+ methodRegistry.put(BidRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((BidRequest) message, sessionID));
+
+ methodRegistry.put(BidResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((BidResponse) message, sessionID));
+
+ methodRegistry.put(NewOrderList.MSGTYPE,
+ (message, sessionID) -> onMessage((NewOrderList) message, sessionID));
+
+ methodRegistry.put(ListStrikePrice.MSGTYPE,
+ (message, sessionID) -> onMessage((ListStrikePrice) message, sessionID));
+
+ methodRegistry.put(ListStatus.MSGTYPE,
+ (message, sessionID) -> onMessage((ListStatus) message, sessionID));
+
+ methodRegistry.put(ListExecute.MSGTYPE,
+ (message, sessionID) -> onMessage((ListExecute) message, sessionID));
+
+ methodRegistry.put(ListCancelRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ListCancelRequest) message, sessionID));
+
+ methodRegistry.put(ListStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ListStatusRequest) message, sessionID));
+
+ methodRegistry.put(AllocationInstruction.MSGTYPE,
+ (message, sessionID) -> onMessage((AllocationInstruction) message, sessionID));
+
+ methodRegistry.put(AllocationInstructionAck.MSGTYPE,
+ (message, sessionID) -> onMessage((AllocationInstructionAck) message, sessionID));
+
+ methodRegistry.put(AllocationReport.MSGTYPE,
+ (message, sessionID) -> onMessage((AllocationReport) message, sessionID));
+
+ methodRegistry.put(AllocationReportAck.MSGTYPE,
+ (message, sessionID) -> onMessage((AllocationReportAck) message, sessionID));
+
+ methodRegistry.put(Confirmation.MSGTYPE,
+ (message, sessionID) -> onMessage((Confirmation) message, sessionID));
+
+ methodRegistry.put(ConfirmationAck.MSGTYPE,
+ (message, sessionID) -> onMessage((ConfirmationAck) message, sessionID));
+
+ methodRegistry.put(ConfirmationRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((ConfirmationRequest) message, sessionID));
+
+ methodRegistry.put(SettlementInstructions.MSGTYPE,
+ (message, sessionID) -> onMessage((SettlementInstructions) message, sessionID));
+
+ methodRegistry.put(SettlementInstructionRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((SettlementInstructionRequest) message, sessionID));
+
+ methodRegistry.put(TradeCaptureReportRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((TradeCaptureReportRequest) message, sessionID));
+
+ methodRegistry.put(TradeCaptureReportRequestAck.MSGTYPE,
+ (message, sessionID) -> onMessage((TradeCaptureReportRequestAck) message, sessionID));
+
+ methodRegistry.put(TradeCaptureReport.MSGTYPE,
+ (message, sessionID) -> onMessage((TradeCaptureReport) message, sessionID));
+
+ methodRegistry.put(TradeCaptureReportAck.MSGTYPE,
+ (message, sessionID) -> onMessage((TradeCaptureReportAck) message, sessionID));
+
+ methodRegistry.put(RegistrationInstructions.MSGTYPE,
+ (message, sessionID) -> onMessage((RegistrationInstructions) message, sessionID));
+
+ methodRegistry.put(RegistrationInstructionsResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((RegistrationInstructionsResponse) message, sessionID));
+
+ methodRegistry.put(PositionMaintenanceRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((PositionMaintenanceRequest) message, sessionID));
+
+ methodRegistry.put(PositionMaintenanceReport.MSGTYPE,
+ (message, sessionID) -> onMessage((PositionMaintenanceReport) message, sessionID));
+
+ methodRegistry.put(RequestForPositions.MSGTYPE,
+ (message, sessionID) -> onMessage((RequestForPositions) message, sessionID));
+
+ methodRegistry.put(RequestForPositionsAck.MSGTYPE,
+ (message, sessionID) -> onMessage((RequestForPositionsAck) message, sessionID));
+
+ methodRegistry.put(PositionReport.MSGTYPE,
+ (message, sessionID) -> onMessage((PositionReport) message, sessionID));
+
+ methodRegistry.put(AssignmentReport.MSGTYPE,
+ (message, sessionID) -> onMessage((AssignmentReport) message, sessionID));
+
+ methodRegistry.put(CollateralRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((CollateralRequest) message, sessionID));
+
+ methodRegistry.put(CollateralAssignment.MSGTYPE,
+ (message, sessionID) -> onMessage((CollateralAssignment) message, sessionID));
+
+ methodRegistry.put(CollateralResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((CollateralResponse) message, sessionID));
+
+ methodRegistry.put(CollateralReport.MSGTYPE,
+ (message, sessionID) -> onMessage((CollateralReport) message, sessionID));
+
+ methodRegistry.put(CollateralInquiry.MSGTYPE,
+ (message, sessionID) -> onMessage((CollateralInquiry) message, sessionID));
+
+ methodRegistry.put(NetworkStatusRequest.MSGTYPE,
+ (message, sessionID) -> onMessage((NetworkStatusRequest) message, sessionID));
+
+ methodRegistry.put(NetworkStatusResponse.MSGTYPE,
+ (message, sessionID) -> onMessage((NetworkStatusResponse) message, sessionID));
+
+ methodRegistry.put(CollateralInquiryAck.MSGTYPE,
+ (message, sessionID) -> onMessage((CollateralInquiryAck) message, sessionID));
+
+ }
+
+ /**
+ * Callback for quickfix.Message message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(quickfix.Message message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXHeartbeat message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Heartbeat message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXLogon message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Logon message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXTestRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TestRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXResendRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ResendRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Reject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXSequenceReset message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SequenceReset message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXLogout message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Logout message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXBusinessMessageReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(BusinessMessageReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ }
+
+ /**
+ * Callback for FIXUserRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(UserRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXUserResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(UserResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAdvertisement message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Advertisement message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXIndicationOfInterest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(IndicationOfInterest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNews message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(News message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXEmail message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Email message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteRequestReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteRequestReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXRFQRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(RFQRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuote message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Quote message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteCancel message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteCancel message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXQuoteStatusReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(QuoteStatusReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMassQuote message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MassQuote message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMassQuoteAcknowledgement message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MassQuoteAcknowledgement message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataSnapshotFullRefresh message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataSnapshotFullRefresh message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataIncrementalRefresh message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataIncrementalRefresh message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMarketDataRequestReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MarketDataRequestReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityDefinitionRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityDefinitionRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityDefinition message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityDefinition message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityTypeRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityTypeRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityTypes message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityTypes message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityListRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityListRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityList message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityList message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXDerivativeSecurityListRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(DerivativeSecurityListRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXDerivativeSecurityList message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(DerivativeSecurityList message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSecurityStatus message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SecurityStatus message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradingSessionStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradingSessionStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradingSessionStatus message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradingSessionStatus message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNewOrderSingle message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NewOrderSingle message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXExecutionReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ExecutionReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXDontKnowTrade message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(DontKnowTrade message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderCancelReplaceRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderCancelReplaceRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderCancelRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderCancelRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderCancelReject message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderCancelReject message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderMassCancelRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderMassCancelRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderMassCancelReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderMassCancelReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXOrderMassStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(OrderMassStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNewOrderCross message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NewOrderCross message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCrossOrderCancelReplaceRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CrossOrderCancelReplaceRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCrossOrderCancelRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CrossOrderCancelRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNewOrderMultileg message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NewOrderMultileg message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXMultilegOrderCancelReplaceRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(MultilegOrderCancelReplaceRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXBidRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(BidRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXBidResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(BidResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNewOrderList message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NewOrderList message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListStrikePrice message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListStrikePrice message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListStatus message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListStatus message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListExecute message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListExecute message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListCancelRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListCancelRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXListStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ListStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAllocationInstruction message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(AllocationInstruction message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAllocationInstructionAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(AllocationInstructionAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAllocationReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(AllocationReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAllocationReportAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(AllocationReportAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXConfirmation message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(Confirmation message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXConfirmationAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ConfirmationAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXConfirmationRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(ConfirmationRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSettlementInstructions message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SettlementInstructions message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXSettlementInstructionRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(SettlementInstructionRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradeCaptureReportRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradeCaptureReportRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradeCaptureReportRequestAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradeCaptureReportRequestAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradeCaptureReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradeCaptureReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXTradeCaptureReportAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(TradeCaptureReportAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXRegistrationInstructions message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(RegistrationInstructions message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXRegistrationInstructionsResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(RegistrationInstructionsResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXPositionMaintenanceRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(PositionMaintenanceRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXPositionMaintenanceReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(PositionMaintenanceReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXRequestForPositions message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(RequestForPositions message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXRequestForPositionsAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(RequestForPositionsAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXPositionReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(PositionReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXAssignmentReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(AssignmentReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCollateralRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CollateralRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCollateralAssignment message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CollateralAssignment message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCollateralResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CollateralResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCollateralReport message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CollateralReport message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCollateralInquiry message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CollateralInquiry message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNetworkStatusRequest message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NetworkStatusRequest message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXNetworkStatusResponse message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(NetworkStatusResponse message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ /**
+ * Callback for FIXCollateralInquiryAck message.
+ *
+ * @param message
+ * @param sessionID
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void onMessage(CollateralInquiryAck message, SessionID sessionID) throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
+ throw new UnsupportedMessageType();
+ }
+
+ public void crack(quickfix.Message message, SessionID sessionID)
+ throws UnsupportedMessageType, FieldNotFound, IncorrectTagValue {
+ crack44((Message) message, sessionID);
+ }
+
+ /**
+ * Cracker method for 44 messages.
+ *
+ * @throws FieldNotFound
+ * @throws UnsupportedMessageType
+ * @throws IncorrectTagValue
+ */
+ public void crack44(Message message, SessionID sessionID)
+ throws UnsupportedMessageType, FieldNotFound, IncorrectTagValue {
+
+ String type = message.getHeader().getString(MsgType.FIELD);
+ methodRegistry.getOrDefault(type, defaultFunction).accept(message, sessionID);
+ }
+
+ @FunctionalInterface
+ private interface MessageConsumer {
+ void accept(Message message, SessionID sessionID)
+ throws UnsupportedMessageType, IncorrectTagValue, FieldNotFound;
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MessageFactory.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MessageFactory.java
new file mode 100644
index 000000000..2864ba6c6
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MessageFactory.java
@@ -0,0 +1,2781 @@
+/* Generated Java Source File */
+/*******************************************************************************
+ * Copyright (c) quickfixengine.org All rights reserved.
+ *
+ * This file is part of the QuickFIX FIX Engine
+ *
+ * This file may be distributed under the terms of the quickfixengine.org
+ * license as defined by quickfixengine.org and appearing in the file
+ * LICENSE included in the packaging of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
+ * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
+ * PARTICULAR PURPOSE.
+ *
+ * See http://www.quickfixengine.org/LICENSE for licensing information.
+ *
+ * Contact ask@quickfixengine.org if any conditions of this licensing
+ * are not clear to you.
+ ******************************************************************************/
+
+package quickfix.fix44;
+
+import quickfix.Message;
+import quickfix.Group;
+
+public class MessageFactory implements quickfix.MessageFactory {
+
+ public Message create(String beginString, String msgType) {
+
+ switch (msgType) {
+
+ case quickfix.fix44.Heartbeat.MSGTYPE:
+ return new quickfix.fix44.Heartbeat();
+
+ case quickfix.fix44.Logon.MSGTYPE:
+ return new quickfix.fix44.Logon();
+
+ case quickfix.fix44.TestRequest.MSGTYPE:
+ return new quickfix.fix44.TestRequest();
+
+ case quickfix.fix44.ResendRequest.MSGTYPE:
+ return new quickfix.fix44.ResendRequest();
+
+ case quickfix.fix44.Reject.MSGTYPE:
+ return new quickfix.fix44.Reject();
+
+ case quickfix.fix44.SequenceReset.MSGTYPE:
+ return new quickfix.fix44.SequenceReset();
+
+ case quickfix.fix44.Logout.MSGTYPE:
+ return new quickfix.fix44.Logout();
+
+ case quickfix.fix44.BusinessMessageReject.MSGTYPE:
+ return new quickfix.fix44.BusinessMessageReject();
+
+ case quickfix.fix44.UserRequest.MSGTYPE:
+ return new quickfix.fix44.UserRequest();
+
+ case quickfix.fix44.UserResponse.MSGTYPE:
+ return new quickfix.fix44.UserResponse();
+
+ case quickfix.fix44.Advertisement.MSGTYPE:
+ return new quickfix.fix44.Advertisement();
+
+ case quickfix.fix44.IndicationOfInterest.MSGTYPE:
+ return new quickfix.fix44.IndicationOfInterest();
+
+ case quickfix.fix44.News.MSGTYPE:
+ return new quickfix.fix44.News();
+
+ case quickfix.fix44.Email.MSGTYPE:
+ return new quickfix.fix44.Email();
+
+ case quickfix.fix44.QuoteRequest.MSGTYPE:
+ return new quickfix.fix44.QuoteRequest();
+
+ case quickfix.fix44.QuoteResponse.MSGTYPE:
+ return new quickfix.fix44.QuoteResponse();
+
+ case quickfix.fix44.QuoteRequestReject.MSGTYPE:
+ return new quickfix.fix44.QuoteRequestReject();
+
+ case quickfix.fix44.RFQRequest.MSGTYPE:
+ return new quickfix.fix44.RFQRequest();
+
+ case quickfix.fix44.Quote.MSGTYPE:
+ return new quickfix.fix44.Quote();
+
+ case quickfix.fix44.QuoteCancel.MSGTYPE:
+ return new quickfix.fix44.QuoteCancel();
+
+ case quickfix.fix44.QuoteStatusRequest.MSGTYPE:
+ return new quickfix.fix44.QuoteStatusRequest();
+
+ case quickfix.fix44.QuoteStatusReport.MSGTYPE:
+ return new quickfix.fix44.QuoteStatusReport();
+
+ case quickfix.fix44.MassQuote.MSGTYPE:
+ return new quickfix.fix44.MassQuote();
+
+ case quickfix.fix44.MassQuoteAcknowledgement.MSGTYPE:
+ return new quickfix.fix44.MassQuoteAcknowledgement();
+
+ case quickfix.fix44.MarketDataRequest.MSGTYPE:
+ return new quickfix.fix44.MarketDataRequest();
+
+ case quickfix.fix44.MarketDataSnapshotFullRefresh.MSGTYPE:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh();
+
+ case quickfix.fix44.MarketDataIncrementalRefresh.MSGTYPE:
+ return new quickfix.fix44.MarketDataIncrementalRefresh();
+
+ case quickfix.fix44.MarketDataRequestReject.MSGTYPE:
+ return new quickfix.fix44.MarketDataRequestReject();
+
+ case quickfix.fix44.SecurityDefinitionRequest.MSGTYPE:
+ return new quickfix.fix44.SecurityDefinitionRequest();
+
+ case quickfix.fix44.SecurityDefinition.MSGTYPE:
+ return new quickfix.fix44.SecurityDefinition();
+
+ case quickfix.fix44.SecurityTypeRequest.MSGTYPE:
+ return new quickfix.fix44.SecurityTypeRequest();
+
+ case quickfix.fix44.SecurityTypes.MSGTYPE:
+ return new quickfix.fix44.SecurityTypes();
+
+ case quickfix.fix44.SecurityListRequest.MSGTYPE:
+ return new quickfix.fix44.SecurityListRequest();
+
+ case quickfix.fix44.SecurityList.MSGTYPE:
+ return new quickfix.fix44.SecurityList();
+
+ case quickfix.fix44.DerivativeSecurityListRequest.MSGTYPE:
+ return new quickfix.fix44.DerivativeSecurityListRequest();
+
+ case quickfix.fix44.DerivativeSecurityList.MSGTYPE:
+ return new quickfix.fix44.DerivativeSecurityList();
+
+ case quickfix.fix44.SecurityStatusRequest.MSGTYPE:
+ return new quickfix.fix44.SecurityStatusRequest();
+
+ case quickfix.fix44.SecurityStatus.MSGTYPE:
+ return new quickfix.fix44.SecurityStatus();
+
+ case quickfix.fix44.TradingSessionStatusRequest.MSGTYPE:
+ return new quickfix.fix44.TradingSessionStatusRequest();
+
+ case quickfix.fix44.TradingSessionStatus.MSGTYPE:
+ return new quickfix.fix44.TradingSessionStatus();
+
+ case quickfix.fix44.NewOrderSingle.MSGTYPE:
+ return new quickfix.fix44.NewOrderSingle();
+
+ case quickfix.fix44.ExecutionReport.MSGTYPE:
+ return new quickfix.fix44.ExecutionReport();
+
+ case quickfix.fix44.DontKnowTrade.MSGTYPE:
+ return new quickfix.fix44.DontKnowTrade();
+
+ case quickfix.fix44.OrderCancelReplaceRequest.MSGTYPE:
+ return new quickfix.fix44.OrderCancelReplaceRequest();
+
+ case quickfix.fix44.OrderCancelRequest.MSGTYPE:
+ return new quickfix.fix44.OrderCancelRequest();
+
+ case quickfix.fix44.OrderCancelReject.MSGTYPE:
+ return new quickfix.fix44.OrderCancelReject();
+
+ case quickfix.fix44.OrderStatusRequest.MSGTYPE:
+ return new quickfix.fix44.OrderStatusRequest();
+
+ case quickfix.fix44.OrderMassCancelRequest.MSGTYPE:
+ return new quickfix.fix44.OrderMassCancelRequest();
+
+ case quickfix.fix44.OrderMassCancelReport.MSGTYPE:
+ return new quickfix.fix44.OrderMassCancelReport();
+
+ case quickfix.fix44.OrderMassStatusRequest.MSGTYPE:
+ return new quickfix.fix44.OrderMassStatusRequest();
+
+ case quickfix.fix44.NewOrderCross.MSGTYPE:
+ return new quickfix.fix44.NewOrderCross();
+
+ case quickfix.fix44.CrossOrderCancelReplaceRequest.MSGTYPE:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest();
+
+ case quickfix.fix44.CrossOrderCancelRequest.MSGTYPE:
+ return new quickfix.fix44.CrossOrderCancelRequest();
+
+ case quickfix.fix44.NewOrderMultileg.MSGTYPE:
+ return new quickfix.fix44.NewOrderMultileg();
+
+ case quickfix.fix44.MultilegOrderCancelReplaceRequest.MSGTYPE:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest();
+
+ case quickfix.fix44.BidRequest.MSGTYPE:
+ return new quickfix.fix44.BidRequest();
+
+ case quickfix.fix44.BidResponse.MSGTYPE:
+ return new quickfix.fix44.BidResponse();
+
+ case quickfix.fix44.NewOrderList.MSGTYPE:
+ return new quickfix.fix44.NewOrderList();
+
+ case quickfix.fix44.ListStrikePrice.MSGTYPE:
+ return new quickfix.fix44.ListStrikePrice();
+
+ case quickfix.fix44.ListStatus.MSGTYPE:
+ return new quickfix.fix44.ListStatus();
+
+ case quickfix.fix44.ListExecute.MSGTYPE:
+ return new quickfix.fix44.ListExecute();
+
+ case quickfix.fix44.ListCancelRequest.MSGTYPE:
+ return new quickfix.fix44.ListCancelRequest();
+
+ case quickfix.fix44.ListStatusRequest.MSGTYPE:
+ return new quickfix.fix44.ListStatusRequest();
+
+ case quickfix.fix44.AllocationInstruction.MSGTYPE:
+ return new quickfix.fix44.AllocationInstruction();
+
+ case quickfix.fix44.AllocationInstructionAck.MSGTYPE:
+ return new quickfix.fix44.AllocationInstructionAck();
+
+ case quickfix.fix44.AllocationReport.MSGTYPE:
+ return new quickfix.fix44.AllocationReport();
+
+ case quickfix.fix44.AllocationReportAck.MSGTYPE:
+ return new quickfix.fix44.AllocationReportAck();
+
+ case quickfix.fix44.Confirmation.MSGTYPE:
+ return new quickfix.fix44.Confirmation();
+
+ case quickfix.fix44.ConfirmationAck.MSGTYPE:
+ return new quickfix.fix44.ConfirmationAck();
+
+ case quickfix.fix44.ConfirmationRequest.MSGTYPE:
+ return new quickfix.fix44.ConfirmationRequest();
+
+ case quickfix.fix44.SettlementInstructions.MSGTYPE:
+ return new quickfix.fix44.SettlementInstructions();
+
+ case quickfix.fix44.SettlementInstructionRequest.MSGTYPE:
+ return new quickfix.fix44.SettlementInstructionRequest();
+
+ case quickfix.fix44.TradeCaptureReportRequest.MSGTYPE:
+ return new quickfix.fix44.TradeCaptureReportRequest();
+
+ case quickfix.fix44.TradeCaptureReportRequestAck.MSGTYPE:
+ return new quickfix.fix44.TradeCaptureReportRequestAck();
+
+ case quickfix.fix44.TradeCaptureReport.MSGTYPE:
+ return new quickfix.fix44.TradeCaptureReport();
+
+ case quickfix.fix44.TradeCaptureReportAck.MSGTYPE:
+ return new quickfix.fix44.TradeCaptureReportAck();
+
+ case quickfix.fix44.RegistrationInstructions.MSGTYPE:
+ return new quickfix.fix44.RegistrationInstructions();
+
+ case quickfix.fix44.RegistrationInstructionsResponse.MSGTYPE:
+ return new quickfix.fix44.RegistrationInstructionsResponse();
+
+ case quickfix.fix44.PositionMaintenanceRequest.MSGTYPE:
+ return new quickfix.fix44.PositionMaintenanceRequest();
+
+ case quickfix.fix44.PositionMaintenanceReport.MSGTYPE:
+ return new quickfix.fix44.PositionMaintenanceReport();
+
+ case quickfix.fix44.RequestForPositions.MSGTYPE:
+ return new quickfix.fix44.RequestForPositions();
+
+ case quickfix.fix44.RequestForPositionsAck.MSGTYPE:
+ return new quickfix.fix44.RequestForPositionsAck();
+
+ case quickfix.fix44.PositionReport.MSGTYPE:
+ return new quickfix.fix44.PositionReport();
+
+ case quickfix.fix44.AssignmentReport.MSGTYPE:
+ return new quickfix.fix44.AssignmentReport();
+
+ case quickfix.fix44.CollateralRequest.MSGTYPE:
+ return new quickfix.fix44.CollateralRequest();
+
+ case quickfix.fix44.CollateralAssignment.MSGTYPE:
+ return new quickfix.fix44.CollateralAssignment();
+
+ case quickfix.fix44.CollateralResponse.MSGTYPE:
+ return new quickfix.fix44.CollateralResponse();
+
+ case quickfix.fix44.CollateralReport.MSGTYPE:
+ return new quickfix.fix44.CollateralReport();
+
+ case quickfix.fix44.CollateralInquiry.MSGTYPE:
+ return new quickfix.fix44.CollateralInquiry();
+
+ case quickfix.fix44.NetworkStatusRequest.MSGTYPE:
+ return new quickfix.fix44.NetworkStatusRequest();
+
+ case quickfix.fix44.NetworkStatusResponse.MSGTYPE:
+ return new quickfix.fix44.NetworkStatusResponse();
+
+ case quickfix.fix44.CollateralInquiryAck.MSGTYPE:
+ return new quickfix.fix44.CollateralInquiryAck();
+
+ }
+
+ return new quickfix.fix44.Message();
+ }
+
+ public Group create(String beginString, String msgType, int correspondingFieldID) {
+
+ switch (msgType) {
+
+ case quickfix.fix44.Logon.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMsgTypes.FIELD:
+ return new quickfix.fix44.Logon.NoMsgTypes();
+
+ }
+ break;
+
+ case quickfix.fix44.Advertisement.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.Advertisement.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.Advertisement.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.Advertisement.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.Advertisement.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.Advertisement.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.Advertisement.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.IndicationOfInterest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoIOIQualifiers.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoIOIQualifiers();
+
+ case quickfix.field.NoRoutingIDs.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoRoutingIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.IndicationOfInterest.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.News.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRoutingIDs.FIELD:
+ return new quickfix.fix44.News.NoRoutingIDs();
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.News.NoRelatedSym();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.News.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.News.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.News.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.News.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.News.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.News.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.LinesOfText.FIELD:
+ return new quickfix.fix44.News.LinesOfText();
+
+ }
+ break;
+
+ case quickfix.fix44.Email.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRoutingIDs.FIELD:
+ return new quickfix.fix44.Email.NoRoutingIDs();
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.Email.NoRelatedSym();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.Email.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.Email.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.Email.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.Email.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.Email.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.Email.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.LinesOfText.FIELD:
+ return new quickfix.fix44.Email.LinesOfText();
+
+ }
+ break;
+
+ case quickfix.fix44.QuoteRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoQuoteQualifiers.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoQuoteQualifiers();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoStipulations();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteRequest.NoRelatedSym.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.QuoteResponse.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteQualifiers.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoQuoteQualifiers();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.QuoteResponse.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.QuoteRequestReject.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoRelatedSym.NoStipulations();
+
+ case quickfix.field.NoQuoteQualifiers.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoQuoteQualifiers();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteRequestReject.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.RFQRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.RFQRequest.NoRelatedSym.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.Quote.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteQualifiers.FIELD:
+ return new quickfix.fix44.Quote.NoQuoteQualifiers();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.Quote.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.Quote.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.Quote.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.Quote.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.Quote.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.Quote.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.Quote.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.Quote.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.Quote.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.Quote.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.Quote.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.Quote.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.QuoteCancel.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteEntries.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoQuoteEntries.NoEvents();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteCancel.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.QuoteStatusRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoEvents();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteStatusRequest.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.QuoteStatusReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoQuoteQualifiers.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoQuoteQualifiers();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.QuoteStatusReport.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.MassQuote.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteSets.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets();
+
+ case quickfix.field.NoQuoteEntries.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets.NoQuoteEntries();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets.NoQuoteEntries.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets.NoQuoteEntries.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets.NoQuoteEntries.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets.NoQuoteEntries.NoEvents();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.MassQuote.NoQuoteSets.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.MassQuote.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.MassQuote.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.MassQuoteAcknowledgement.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoQuoteSets.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets();
+
+ case quickfix.field.NoQuoteEntries.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets.NoQuoteEntries();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets.NoQuoteEntries.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets.NoQuoteEntries.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets.NoQuoteEntries.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets.NoQuoteEntries.NoEvents();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoQuoteSets.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.MassQuoteAcknowledgement.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.MarketDataRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMDEntryTypes.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoMDEntryTypes();
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.MarketDataRequest.NoTradingSessions();
+
+ }
+ break;
+
+ case quickfix.fix44.MarketDataSnapshotFullRefresh.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoMDEntries.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoMDEntries();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.MarketDataSnapshotFullRefresh.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.MarketDataIncrementalRefresh.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoMDEntries.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.MarketDataIncrementalRefresh.NoMDEntries.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.MarketDataRequestReject.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAltMDSource.FIELD:
+ return new quickfix.fix44.MarketDataRequestReject.NoAltMDSource();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityDefinitionRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.SecurityDefinitionRequest.NoInstrAttrib();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityDefinition.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.SecurityDefinition.NoInstrAttrib();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityTypes.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoSecurityTypes.FIELD:
+ return new quickfix.fix44.SecurityTypes.NoSecurityTypes();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityListRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.SecurityListRequest.NoInstrAttrib();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityList.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoInstrAttrib();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.SecurityList.NoRelatedSym.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.DerivativeSecurityListRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.DerivativeSecurityListRequest.NoUnderlyingSecurityAltID();
+
+ }
+ break;
+
+ case quickfix.fix44.DerivativeSecurityList.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRelatedSym.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoRelatedSym();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoRelatedSym.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoRelatedSym.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoRelatedSym.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoRelatedSym.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoRelatedSym.NoInstrAttrib();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.DerivativeSecurityList.NoUnderlyingSecurityAltID();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityStatusRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.SecurityStatusRequest.NoInstrAttrib();
+
+ }
+ break;
+
+ case quickfix.fix44.SecurityStatus.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.SecurityStatus.NoInstrAttrib();
+
+ }
+ break;
+
+ case quickfix.fix44.NewOrderSingle.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoAllocs();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoTradingSessions();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.NewOrderSingle.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.ExecutionReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoContraBrokers.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoContraBrokers();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoContAmts.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoContAmts();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoMiscFees();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.ExecutionReport.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.DontKnowTrade.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.DontKnowTrade.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.DontKnowTrade.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.DontKnowTrade.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.DontKnowTrade.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.DontKnowTrade.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.DontKnowTrade.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.OrderCancelReplaceRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoAllocs();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoTradingSessions();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.OrderCancelReplaceRequest.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.OrderCancelRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.OrderCancelRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderCancelRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.OrderCancelRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.OrderCancelRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderCancelRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.OrderCancelRequest.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.OrderStatusRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.OrderStatusRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderStatusRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.OrderStatusRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.OrderStatusRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderStatusRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.OrderStatusRequest.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.OrderMassCancelRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderMassCancelRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.OrderMassCancelRequest.NoEvents();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderMassCancelRequest.NoUnderlyingSecurityAltID();
+
+ }
+ break;
+
+ case quickfix.fix44.OrderMassCancelReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAffectedOrders.FIELD:
+ return new quickfix.fix44.OrderMassCancelReport.NoAffectedOrders();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderMassCancelReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.OrderMassCancelReport.NoEvents();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderMassCancelReport.NoUnderlyingSecurityAltID();
+
+ }
+ break;
+
+ case quickfix.fix44.OrderMassStatusRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.OrderMassStatusRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.OrderMassStatusRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderMassStatusRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.OrderMassStatusRequest.NoEvents();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.OrderMassStatusRequest.NoUnderlyingSecurityAltID();
+
+ }
+ break;
+
+ case quickfix.fix44.NewOrderCross.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoSides.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSides();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSides.NoAllocs();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSides.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSides.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSides.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSides.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoTradingSessions();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.NewOrderCross.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.CrossOrderCancelReplaceRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoSides.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSides();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSides.NoAllocs();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSides.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSides.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSides.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSides.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoTradingSessions();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.CrossOrderCancelReplaceRequest.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.CrossOrderCancelRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoSides.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoSides();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoSides.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoSides.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CrossOrderCancelRequest.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.NewOrderMultileg.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoAllocs();
+
+ case quickfix.field.NoNested3PartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoAllocs.NoNested3PartyIDs();
+
+ case quickfix.field.NoNested3PartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoAllocs.NoNested3PartyIDs.NoNested3PartySubIDs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoTradingSessions();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs();
+
+ case quickfix.field.NoLegAllocs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoLegAllocs();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoLegAllocs.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoLegAllocs.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.NewOrderMultileg.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.MultilegOrderCancelReplaceRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoAllocs();
+
+ case quickfix.field.NoNested3PartyIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoAllocs.NoNested3PartyIDs();
+
+ case quickfix.field.NoNested3PartySubIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoAllocs.NoNested3PartyIDs.NoNested3PartySubIDs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoTradingSessions();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs();
+
+ case quickfix.field.NoLegAllocs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoLegAllocs();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoLegAllocs.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoLegAllocs.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.MultilegOrderCancelReplaceRequest.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.BidRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoBidDescriptors.FIELD:
+ return new quickfix.fix44.BidRequest.NoBidDescriptors();
+
+ case quickfix.field.NoBidComponents.FIELD:
+ return new quickfix.fix44.BidRequest.NoBidComponents();
+
+ }
+ break;
+
+ case quickfix.fix44.BidResponse.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoBidComponents.FIELD:
+ return new quickfix.fix44.BidResponse.NoBidComponents();
+
+ }
+ break;
+
+ case quickfix.fix44.NewOrderList.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoAllocs();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoTradingSessions();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoEvents();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.NewOrderList.NoOrders.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.ListStrikePrice.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoStrikes.FIELD:
+ return new quickfix.fix44.ListStrikePrice.NoStrikes();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.ListStrikePrice.NoStrikes.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.ListStrikePrice.NoStrikes.NoEvents();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.ListStrikePrice.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.ListStrikePrice.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ }
+ break;
+
+ case quickfix.fix44.ListStatus.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix44.ListStatus.NoOrders();
+
+ }
+ break;
+
+ case quickfix.fix44.AllocationInstruction.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoOrders();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoOrders.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoOrders.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoExecs();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs.NoMiscFees();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoAllocs.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoInstrAttrib();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.AllocationInstruction.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.AllocationInstructionAck.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.AllocationInstructionAck.NoAllocs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationInstructionAck.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationInstructionAck.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.AllocationReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix44.AllocationReport.NoOrders();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoOrders.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoOrders.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoExecs();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.AllocationReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.AllocationReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.AllocationReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoMiscFees();
+
+ case quickfix.field.NoClearingInstructions.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoClearingInstructions();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoAllocs.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.AllocationReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.AllocationReport.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.AllocationReport.NoInstrAttrib();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.AllocationReport.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.AllocationReportAck.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.AllocationReportAck.NoAllocs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.AllocationReportAck.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.AllocationReportAck.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.Confirmation.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix44.Confirmation.NoOrders();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.Confirmation.NoOrders.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.Confirmation.NoOrders.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.Confirmation.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.Confirmation.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.Confirmation.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.Confirmation.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoCapacities.FIELD:
+ return new quickfix.fix44.Confirmation.NoCapacities();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.Confirmation.NoMiscFees();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.Confirmation.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.Confirmation.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.Confirmation.NoTrdRegTimestamps();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.Confirmation.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.Confirmation.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.Confirmation.NoInstrAttrib();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.Confirmation.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.Confirmation.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.Confirmation.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.Confirmation.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.ConfirmationRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoOrders.FIELD:
+ return new quickfix.fix44.ConfirmationRequest.NoOrders();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.ConfirmationRequest.NoOrders.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.ConfirmationRequest.NoOrders.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.SettlementInstructions.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoSettlInst.FIELD:
+ return new quickfix.fix44.SettlementInstructions.NoSettlInst();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.SettlementInstructions.NoSettlInst.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.SettlementInstructions.NoSettlInst.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.SettlementInstructions.NoSettlInst.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.SettlementInstructions.NoSettlInst.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.SettlementInstructions.NoSettlInst.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.SettlementInstructionRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.SettlementInstructionRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.SettlementInstructionRequest.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.TradeCaptureReportRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoDates.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoDates();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoEvents();
+
+ case quickfix.field.NoInstrAttrib.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequest.NoInstrAttrib();
+
+ }
+ break;
+
+ case quickfix.fix44.TradeCaptureReportRequestAck.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequestAck.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequestAck.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequestAck.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequestAck.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequestAck.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.TradeCaptureReportRequestAck.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.TradeCaptureReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoSides.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides();
+
+ case quickfix.field.NoClearingInstructions.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoClearingInstructions();
+
+ case quickfix.field.NoContAmts.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoContAmts();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoMiscFees();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoAllocs();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoAllocs.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoAllocs.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSides.NoStipulations();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoEvents();
+
+ case quickfix.field.NoPosAmt.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoPosAmt();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.TradeCaptureReport.NoTrdRegTimestamps();
+
+ }
+ break;
+
+ case quickfix.fix44.TradeCaptureReportAck.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoLegStipulations.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoLegs.NoLegStipulations();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoLegs.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoLegs.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoAllocs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoAllocs();
+
+ case quickfix.field.NoNested2PartyIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoAllocs.NoNested2PartyIDs();
+
+ case quickfix.field.NoNested2PartySubIDs.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoAllocs.NoNested2PartyIDs.NoNested2PartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoEvents();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.TradeCaptureReportAck.NoTrdRegTimestamps();
+
+ }
+ break;
+
+ case quickfix.fix44.RegistrationInstructions.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoRegistDtls.FIELD:
+ return new quickfix.fix44.RegistrationInstructions.NoRegistDtls();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.RegistrationInstructions.NoRegistDtls.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.RegistrationInstructions.NoRegistDtls.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoDistribInsts.FIELD:
+ return new quickfix.fix44.RegistrationInstructions.NoDistribInsts();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.RegistrationInstructions.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.RegistrationInstructions.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.RegistrationInstructionsResponse.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.RegistrationInstructionsResponse.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.RegistrationInstructionsResponse.NoPartyIDs.NoPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.PositionMaintenanceRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoTradingSessions();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoEvents();
+
+ case quickfix.field.NoPositions.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoPositions();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoPositions.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceRequest.NoPositions.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.PositionMaintenanceReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoTradingSessions();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoEvents();
+
+ case quickfix.field.NoPositions.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoPositions();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoPositions.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoPositions.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPosAmt.FIELD:
+ return new quickfix.fix44.PositionMaintenanceReport.NoPosAmt();
+
+ }
+ break;
+
+ case quickfix.fix44.RequestForPositions.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoTradingSessions.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoTradingSessions();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.RequestForPositions.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.RequestForPositionsAck.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.RequestForPositionsAck.NoEvents();
+
+ }
+ break;
+
+ case quickfix.fix44.PositionReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.PositionReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.PositionReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.PositionReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.PositionReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.PositionReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.PositionReport.NoEvents();
+
+ case quickfix.field.NoPositions.FIELD:
+ return new quickfix.fix44.PositionReport.NoPositions();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.PositionReport.NoPositions.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.PositionReport.NoPositions.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPosAmt.FIELD:
+ return new quickfix.fix44.PositionReport.NoPosAmt();
+
+ }
+ break;
+
+ case quickfix.fix44.AssignmentReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoEvents();
+
+ case quickfix.field.NoPositions.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoPositions();
+
+ case quickfix.field.NoNestedPartyIDs.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoPositions.NoNestedPartyIDs();
+
+ case quickfix.field.NoNestedPartySubIDs.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoPositions.NoNestedPartyIDs.NoNestedPartySubIDs();
+
+ case quickfix.field.NoPosAmt.FIELD:
+ return new quickfix.fix44.AssignmentReport.NoPosAmt();
+
+ }
+ break;
+
+ case quickfix.fix44.CollateralRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoExecs();
+
+ case quickfix.field.NoTrades.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoTrades();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoMiscFees();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoEvents();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoTrdRegTimestamps();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.CollateralRequest.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.CollateralAssignment.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoExecs();
+
+ case quickfix.field.NoTrades.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoTrades();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoMiscFees();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoEvents();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoTrdRegTimestamps();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoStipulations();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralAssignment.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.CollateralResponse.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoExecs();
+
+ case quickfix.field.NoTrades.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoTrades();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoMiscFees();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoEvents();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoTrdRegTimestamps();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.CollateralResponse.NoStipulations();
+
+ }
+ break;
+
+ case quickfix.fix44.CollateralReport.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.CollateralReport.NoExecs();
+
+ case quickfix.field.NoTrades.FIELD:
+ return new quickfix.fix44.CollateralReport.NoTrades();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CollateralReport.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralReport.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CollateralReport.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralReport.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoMiscFees.FIELD:
+ return new quickfix.fix44.CollateralReport.NoMiscFees();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralReport.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralReport.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralReport.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CollateralReport.NoEvents();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.CollateralReport.NoTrdRegTimestamps();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.CollateralReport.NoStipulations();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.CollateralReport.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralReport.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralReport.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.CollateralInquiry.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoCollInquiryQualifier.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoCollInquiryQualifier();
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoExecs();
+
+ case quickfix.field.NoTrades.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoTrades();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoEvents();
+
+ case quickfix.field.NoTrdRegTimestamps.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoTrdRegTimestamps();
+
+ case quickfix.field.NoStipulations.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoStipulations();
+
+ case quickfix.field.NoDlvyInst.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoDlvyInst();
+
+ case quickfix.field.NoSettlPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoDlvyInst.NoSettlPartyIDs();
+
+ case quickfix.field.NoSettlPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralInquiry.NoDlvyInst.NoSettlPartyIDs.NoSettlPartySubIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.NetworkStatusRequest.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoCompIDs.FIELD:
+ return new quickfix.fix44.NetworkStatusRequest.NoCompIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.NetworkStatusResponse.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoCompIDs.FIELD:
+ return new quickfix.fix44.NetworkStatusResponse.NoCompIDs();
+
+ }
+ break;
+
+ case quickfix.fix44.CollateralInquiryAck.MSGTYPE:
+ switch (correspondingFieldID) {
+
+ case quickfix.field.NoCollInquiryQualifier.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoCollInquiryQualifier();
+
+ case quickfix.field.NoExecs.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoExecs();
+
+ case quickfix.field.NoTrades.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoTrades();
+
+ case quickfix.field.NoLegs.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoLegs();
+
+ case quickfix.field.NoLegSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoLegs.NoLegSecurityAltID();
+
+ case quickfix.field.NoUnderlyings.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoUnderlyings();
+
+ case quickfix.field.NoUnderlyingSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoUnderlyings.NoUnderlyingSecurityAltID();
+
+ case quickfix.field.NoPartyIDs.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoPartyIDs();
+
+ case quickfix.field.NoPartySubIDs.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoPartyIDs.NoPartySubIDs();
+
+ case quickfix.field.NoSecurityAltID.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoSecurityAltID();
+
+ case quickfix.field.NoEvents.FIELD:
+ return new quickfix.fix44.CollateralInquiryAck.NoEvents();
+
+ }
+ break;
+
+ }
+
+ return null;
+ }
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MultilegOrderCancelReplaceRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MultilegOrderCancelReplaceRequest.java
new file mode 100644
index 000000000..3bfbb3259
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/MultilegOrderCancelReplaceRequest.java
@@ -0,0 +1,6414 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class MultilegOrderCancelReplaceRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AC";
+
+
+ public MultilegOrderCancelReplaceRequest() {
+
+ super(new int[] {37, 41, 11, 526, 583, 586, 453, 229, 75, 1, 660, 581, 589, 590, 591, 70, 78, 63, 64, 544, 635, 21, 18, 110, 111, 100, 386, 81, 54, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 140, 555, 114, 60, 854, 38, 152, 516, 468, 469, 40, 423, 44, 99, 15, 376, 377, 23, 117, 59, 168, 432, 126, 427, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 77, 203, 210, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 480, 481, 513, 494, 563, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public MultilegOrderCancelReplaceRequest(quickfix.field.OrigClOrdID origClOrdID, quickfix.field.ClOrdID clOrdID, quickfix.field.Side side, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(origClOrdID);
+ setField(clOrdID);
+ setField(side);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.OrigOrdModTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigOrdModTime get(quickfix.field.OrigOrdModTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigOrdModTime getOrigOrdModTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigOrdModTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigOrdModTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigOrdModTime() {
+ return isSetField(586);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 948, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties3 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties3 get(quickfix.fix44.component.NestedParties3 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties3 getNestedParties3() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties3());
+ }
+
+ public void set(quickfix.field.NoNested3PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested3PartyIDs get(quickfix.field.NoNested3PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested3PartyIDs getNoNested3PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested3PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested3PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested3PartyIDs() {
+ return isSetField(948);
+ }
+
+ public static class NoNested3PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {949, 950, 951, 952, 0};
+
+ public NoNested3PartyIDs() {
+ super(948, 949, ORDER);
+ }
+
+ public void set(quickfix.field.Nested3PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartyID get(quickfix.field.Nested3PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartyID getNested3PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartyID() {
+ return isSetField(949);
+ }
+
+ public void set(quickfix.field.Nested3PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartyIDSource get(quickfix.field.Nested3PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartyIDSource getNested3PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartyIDSource() {
+ return isSetField(950);
+ }
+
+ public void set(quickfix.field.Nested3PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartyRole get(quickfix.field.Nested3PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartyRole getNested3PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartyRole() {
+ return isSetField(951);
+ }
+
+ public void set(quickfix.field.NoNested3PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested3PartySubIDs get(quickfix.field.NoNested3PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested3PartySubIDs getNoNested3PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested3PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested3PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested3PartySubIDs() {
+ return isSetField(952);
+ }
+
+ public static class NoNested3PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {953, 954, 0};
+
+ public NoNested3PartySubIDs() {
+ super(952, 953, ORDER);
+ }
+
+ public void set(quickfix.field.Nested3PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartySubID get(quickfix.field.Nested3PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartySubID getNested3PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartySubID() {
+ return isSetField(953);
+ }
+
+ public void set(quickfix.field.Nested3PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartySubIDType get(quickfix.field.Nested3PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartySubIDType getNested3PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartySubIDType() {
+ return isSetField(954);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 683, 670, 564, 565, 539, 654, 566, 587, 588, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegAllocs get(quickfix.field.NoLegAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegAllocs getNoLegAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegAllocs() {
+ return isSetField(670);
+ }
+
+ public static class NoLegAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {671, 672, 756, 673, 674, 675, 0};
+
+ public NoLegAllocs() {
+ super(670, 671, ORDER);
+ }
+
+ public void set(quickfix.field.LegAllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegAllocAccount get(quickfix.field.LegAllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegAllocAccount getLegAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.LegAllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.LegAllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegAllocAccount() {
+ return isSetField(671);
+ }
+
+ public void set(quickfix.field.LegIndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIndividualAllocID get(quickfix.field.LegIndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIndividualAllocID getLegIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.LegIndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.LegIndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIndividualAllocID() {
+ return isSetField(672);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegAllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegAllocQty get(quickfix.field.LegAllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegAllocQty getLegAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.LegAllocQty());
+ }
+
+ public boolean isSet(quickfix.field.LegAllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegAllocQty() {
+ return isSetField(673);
+ }
+
+ public void set(quickfix.field.LegAllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegAllocAcctIDSource get(quickfix.field.LegAllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegAllocAcctIDSource getLegAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegAllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegAllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegAllocAcctIDSource() {
+ return isSetField(674);
+ }
+
+ public void set(quickfix.field.LegSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlCurrency get(quickfix.field.LegSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlCurrency getLegSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlCurrency() {
+ return isSetField(675);
+ }
+
+ }
+
+ public void set(quickfix.field.LegPositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPositionEffect get(quickfix.field.LegPositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPositionEffect getLegPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.LegPositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.LegPositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPositionEffect() {
+ return isSetField(564);
+ }
+
+ public void set(quickfix.field.LegCoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCoveredOrUncovered get(quickfix.field.LegCoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCoveredOrUncovered getLegCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.LegCoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.LegCoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCoveredOrUncovered() {
+ return isSetField(565);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRefID get(quickfix.field.LegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRefID getLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.LegRefID());
+ }
+
+ public boolean isSet(quickfix.field.LegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRefID() {
+ return isSetField(654);
+ }
+
+ public void set(quickfix.field.LegPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPrice get(quickfix.field.LegPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPrice getLegPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPrice() {
+ return isSetField(566);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+ public void set(quickfix.field.MultiLegRptTypeReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.MultiLegRptTypeReq get(quickfix.field.MultiLegRptTypeReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MultiLegRptTypeReq getMultiLegRptTypeReq() throws FieldNotFound {
+ return get(new quickfix.field.MultiLegRptTypeReq());
+ }
+
+ public boolean isSet(quickfix.field.MultiLegRptTypeReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMultiLegRptTypeReq() {
+ return isSetField(563);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NetworkStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NetworkStatusRequest.java
new file mode 100644
index 000000000..7b1f3bb0f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NetworkStatusRequest.java
@@ -0,0 +1,185 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NetworkStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "BC";
+
+
+ public NetworkStatusRequest() {
+
+ super(new int[] {935, 933, 936, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NetworkStatusRequest(quickfix.field.NetworkRequestType networkRequestType, quickfix.field.NetworkRequestID networkRequestID) {
+ this();
+ setField(networkRequestType);
+ setField(networkRequestID);
+ }
+
+ public void set(quickfix.field.NetworkRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetworkRequestType get(quickfix.field.NetworkRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetworkRequestType getNetworkRequestType() throws FieldNotFound {
+ return get(new quickfix.field.NetworkRequestType());
+ }
+
+ public boolean isSet(quickfix.field.NetworkRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetworkRequestType() {
+ return isSetField(935);
+ }
+
+ public void set(quickfix.field.NetworkRequestID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetworkRequestID get(quickfix.field.NetworkRequestID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetworkRequestID getNetworkRequestID() throws FieldNotFound {
+ return get(new quickfix.field.NetworkRequestID());
+ }
+
+ public boolean isSet(quickfix.field.NetworkRequestID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetworkRequestID() {
+ return isSetField(933);
+ }
+
+ public void set(quickfix.field.NoCompIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoCompIDs get(quickfix.field.NoCompIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoCompIDs getNoCompIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoCompIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoCompIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoCompIDs() {
+ return isSetField(936);
+ }
+
+ public static class NoCompIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {930, 931, 283, 284, 0};
+
+ public NoCompIDs() {
+ super(936, 930, ORDER);
+ }
+
+ public void set(quickfix.field.RefCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefCompID get(quickfix.field.RefCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefCompID getRefCompID() throws FieldNotFound {
+ return get(new quickfix.field.RefCompID());
+ }
+
+ public boolean isSet(quickfix.field.RefCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefCompID() {
+ return isSetField(930);
+ }
+
+ public void set(quickfix.field.RefSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefSubID get(quickfix.field.RefSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefSubID getRefSubID() throws FieldNotFound {
+ return get(new quickfix.field.RefSubID());
+ }
+
+ public boolean isSet(quickfix.field.RefSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefSubID() {
+ return isSetField(931);
+ }
+
+ public void set(quickfix.field.LocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocationID get(quickfix.field.LocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocationID getLocationID() throws FieldNotFound {
+ return get(new quickfix.field.LocationID());
+ }
+
+ public boolean isSet(quickfix.field.LocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocationID() {
+ return isSetField(283);
+ }
+
+ public void set(quickfix.field.DeskID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeskID get(quickfix.field.DeskID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeskID getDeskID() throws FieldNotFound {
+ return get(new quickfix.field.DeskID());
+ }
+
+ public boolean isSet(quickfix.field.DeskID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeskID() {
+ return isSetField(284);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NetworkStatusResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NetworkStatusResponse.java
new file mode 100644
index 000000000..9ebdf930a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NetworkStatusResponse.java
@@ -0,0 +1,268 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NetworkStatusResponse extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "BD";
+
+
+ public NetworkStatusResponse() {
+
+ super(new int[] {937, 933, 932, 934, 936, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NetworkStatusResponse(quickfix.field.NetworkStatusResponseType networkStatusResponseType) {
+ this();
+ setField(networkStatusResponseType);
+ }
+
+ public void set(quickfix.field.NetworkStatusResponseType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetworkStatusResponseType get(quickfix.field.NetworkStatusResponseType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetworkStatusResponseType getNetworkStatusResponseType() throws FieldNotFound {
+ return get(new quickfix.field.NetworkStatusResponseType());
+ }
+
+ public boolean isSet(quickfix.field.NetworkStatusResponseType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetworkStatusResponseType() {
+ return isSetField(937);
+ }
+
+ public void set(quickfix.field.NetworkRequestID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetworkRequestID get(quickfix.field.NetworkRequestID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetworkRequestID getNetworkRequestID() throws FieldNotFound {
+ return get(new quickfix.field.NetworkRequestID());
+ }
+
+ public boolean isSet(quickfix.field.NetworkRequestID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetworkRequestID() {
+ return isSetField(933);
+ }
+
+ public void set(quickfix.field.NetworkResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetworkResponseID get(quickfix.field.NetworkResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetworkResponseID getNetworkResponseID() throws FieldNotFound {
+ return get(new quickfix.field.NetworkResponseID());
+ }
+
+ public boolean isSet(quickfix.field.NetworkResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetworkResponseID() {
+ return isSetField(932);
+ }
+
+ public void set(quickfix.field.LastNetworkResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastNetworkResponseID get(quickfix.field.LastNetworkResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastNetworkResponseID getLastNetworkResponseID() throws FieldNotFound {
+ return get(new quickfix.field.LastNetworkResponseID());
+ }
+
+ public boolean isSet(quickfix.field.LastNetworkResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastNetworkResponseID() {
+ return isSetField(934);
+ }
+
+ public void set(quickfix.field.NoCompIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoCompIDs get(quickfix.field.NoCompIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoCompIDs getNoCompIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoCompIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoCompIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoCompIDs() {
+ return isSetField(936);
+ }
+
+ public static class NoCompIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {930, 931, 283, 284, 928, 929, 0};
+
+ public NoCompIDs() {
+ super(936, 930, ORDER);
+ }
+
+ public void set(quickfix.field.RefCompID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefCompID get(quickfix.field.RefCompID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefCompID getRefCompID() throws FieldNotFound {
+ return get(new quickfix.field.RefCompID());
+ }
+
+ public boolean isSet(quickfix.field.RefCompID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefCompID() {
+ return isSetField(930);
+ }
+
+ public void set(quickfix.field.RefSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefSubID get(quickfix.field.RefSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefSubID getRefSubID() throws FieldNotFound {
+ return get(new quickfix.field.RefSubID());
+ }
+
+ public boolean isSet(quickfix.field.RefSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefSubID() {
+ return isSetField(931);
+ }
+
+ public void set(quickfix.field.LocationID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocationID get(quickfix.field.LocationID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocationID getLocationID() throws FieldNotFound {
+ return get(new quickfix.field.LocationID());
+ }
+
+ public boolean isSet(quickfix.field.LocationID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocationID() {
+ return isSetField(283);
+ }
+
+ public void set(quickfix.field.DeskID value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeskID get(quickfix.field.DeskID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeskID getDeskID() throws FieldNotFound {
+ return get(new quickfix.field.DeskID());
+ }
+
+ public boolean isSet(quickfix.field.DeskID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeskID() {
+ return isSetField(284);
+ }
+
+ public void set(quickfix.field.StatusValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StatusValue get(quickfix.field.StatusValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StatusValue getStatusValue() throws FieldNotFound {
+ return get(new quickfix.field.StatusValue());
+ }
+
+ public boolean isSet(quickfix.field.StatusValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStatusValue() {
+ return isSetField(928);
+ }
+
+ public void set(quickfix.field.StatusText value) {
+ setField(value);
+ }
+
+ public quickfix.field.StatusText get(quickfix.field.StatusText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StatusText getStatusText() throws FieldNotFound {
+ return get(new quickfix.field.StatusText());
+ }
+
+ public boolean isSet(quickfix.field.StatusText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStatusText() {
+ return isSetField(929);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderCross.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderCross.java
new file mode 100644
index 000000000..3a30a2e81
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderCross.java
@@ -0,0 +1,6097 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NewOrderCross extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "s";
+
+
+ public NewOrderCross() {
+
+ super(new int[] {548, 549, 550, 552, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 63, 64, 21, 18, 110, 111, 100, 386, 81, 140, 114, 60, 232, 40, 423, 44, 99, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 15, 376, 23, 117, 59, 168, 432, 126, 427, 210, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 480, 481, 513, 494, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NewOrderCross(quickfix.field.CrossID crossID, quickfix.field.CrossType crossType, quickfix.field.CrossPrioritization crossPrioritization, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(crossID);
+ setField(crossType);
+ setField(crossPrioritization);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.CrossID value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossID get(quickfix.field.CrossID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossID getCrossID() throws FieldNotFound {
+ return get(new quickfix.field.CrossID());
+ }
+
+ public boolean isSet(quickfix.field.CrossID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossID() {
+ return isSetField(548);
+ }
+
+ public void set(quickfix.field.CrossType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossType get(quickfix.field.CrossType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossType getCrossType() throws FieldNotFound {
+ return get(new quickfix.field.CrossType());
+ }
+
+ public boolean isSet(quickfix.field.CrossType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossType() {
+ return isSetField(549);
+ }
+
+ public void set(quickfix.field.CrossPrioritization value) {
+ setField(value);
+ }
+
+ public quickfix.field.CrossPrioritization get(quickfix.field.CrossPrioritization value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CrossPrioritization getCrossPrioritization() throws FieldNotFound {
+ return get(new quickfix.field.CrossPrioritization());
+ }
+
+ public boolean isSet(quickfix.field.CrossPrioritization field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCrossPrioritization() {
+ return isSetField(550);
+ }
+
+ public void set(quickfix.field.NoSides value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSides get(quickfix.field.NoSides value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSides getNoSides() throws FieldNotFound {
+ return get(new quickfix.field.NoSides());
+ }
+
+ public boolean isSet(quickfix.field.NoSides field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSides() {
+ return isSetField(552);
+ }
+
+ public static class NoSides extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {54, 11, 526, 583, 453, 229, 75, 1, 660, 581, 589, 590, 591, 70, 78, 854, 38, 152, 516, 468, 469, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 77, 203, 544, 635, 377, 659, 0};
+
+ public NoSides() {
+ super(552, 54, ORDER);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 539, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.SideComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideComplianceID get(quickfix.field.SideComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideComplianceID getSideComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.SideComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.SideComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideComplianceID() {
+ return isSetField(659);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderList.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderList.java
new file mode 100644
index 000000000..59b29492a
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderList.java
@@ -0,0 +1,5472 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NewOrderList extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "E";
+
+
+ public NewOrderList() {
+
+ super(new int[] {66, 390, 391, 414, 394, 415, 480, 481, 513, 433, 69, 352, 353, 765, 766, 767, 68, 893, 73, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NewOrderList(quickfix.field.ListID listID, quickfix.field.BidType bidType, quickfix.field.TotNoOrders totNoOrders) {
+ this();
+ setField(listID);
+ setField(bidType);
+ setField(totNoOrders);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.BidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidID get(quickfix.field.BidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidID getBidID() throws FieldNotFound {
+ return get(new quickfix.field.BidID());
+ }
+
+ public boolean isSet(quickfix.field.BidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidID() {
+ return isSetField(390);
+ }
+
+ public void set(quickfix.field.ClientBidID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClientBidID get(quickfix.field.ClientBidID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClientBidID getClientBidID() throws FieldNotFound {
+ return get(new quickfix.field.ClientBidID());
+ }
+
+ public boolean isSet(quickfix.field.ClientBidID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClientBidID() {
+ return isSetField(391);
+ }
+
+ public void set(quickfix.field.ProgRptReqs value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgRptReqs get(quickfix.field.ProgRptReqs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgRptReqs getProgRptReqs() throws FieldNotFound {
+ return get(new quickfix.field.ProgRptReqs());
+ }
+
+ public boolean isSet(quickfix.field.ProgRptReqs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgRptReqs() {
+ return isSetField(414);
+ }
+
+ public void set(quickfix.field.BidType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidType get(quickfix.field.BidType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidType getBidType() throws FieldNotFound {
+ return get(new quickfix.field.BidType());
+ }
+
+ public boolean isSet(quickfix.field.BidType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidType() {
+ return isSetField(394);
+ }
+
+ public void set(quickfix.field.ProgPeriodInterval value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProgPeriodInterval get(quickfix.field.ProgPeriodInterval value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProgPeriodInterval getProgPeriodInterval() throws FieldNotFound {
+ return get(new quickfix.field.ProgPeriodInterval());
+ }
+
+ public boolean isSet(quickfix.field.ProgPeriodInterval field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProgPeriodInterval() {
+ return isSetField(415);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.ListExecInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListExecInstType get(quickfix.field.ListExecInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListExecInstType getListExecInstType() throws FieldNotFound {
+ return get(new quickfix.field.ListExecInstType());
+ }
+
+ public boolean isSet(quickfix.field.ListExecInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListExecInstType() {
+ return isSetField(433);
+ }
+
+ public void set(quickfix.field.ListExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListExecInst get(quickfix.field.ListExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListExecInst getListExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ListExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ListExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListExecInst() {
+ return isSetField(69);
+ }
+
+ public void set(quickfix.field.EncodedListExecInstLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListExecInstLen get(quickfix.field.EncodedListExecInstLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListExecInstLen getEncodedListExecInstLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListExecInstLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListExecInstLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListExecInstLen() {
+ return isSetField(352);
+ }
+
+ public void set(quickfix.field.EncodedListExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedListExecInst get(quickfix.field.EncodedListExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedListExecInst getEncodedListExecInst() throws FieldNotFound {
+ return get(new quickfix.field.EncodedListExecInst());
+ }
+
+ public boolean isSet(quickfix.field.EncodedListExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedListExecInst() {
+ return isSetField(353);
+ }
+
+ public void set(quickfix.field.AllowableOneSidednessPct value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllowableOneSidednessPct get(quickfix.field.AllowableOneSidednessPct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllowableOneSidednessPct getAllowableOneSidednessPct() throws FieldNotFound {
+ return get(new quickfix.field.AllowableOneSidednessPct());
+ }
+
+ public boolean isSet(quickfix.field.AllowableOneSidednessPct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllowableOneSidednessPct() {
+ return isSetField(765);
+ }
+
+ public void set(quickfix.field.AllowableOneSidednessValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllowableOneSidednessValue get(quickfix.field.AllowableOneSidednessValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllowableOneSidednessValue getAllowableOneSidednessValue() throws FieldNotFound {
+ return get(new quickfix.field.AllowableOneSidednessValue());
+ }
+
+ public boolean isSet(quickfix.field.AllowableOneSidednessValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllowableOneSidednessValue() {
+ return isSetField(766);
+ }
+
+ public void set(quickfix.field.AllowableOneSidednessCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllowableOneSidednessCurr get(quickfix.field.AllowableOneSidednessCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllowableOneSidednessCurr getAllowableOneSidednessCurr() throws FieldNotFound {
+ return get(new quickfix.field.AllowableOneSidednessCurr());
+ }
+
+ public boolean isSet(quickfix.field.AllowableOneSidednessCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllowableOneSidednessCurr() {
+ return isSetField(767);
+ }
+
+ public void set(quickfix.field.TotNoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoOrders get(quickfix.field.TotNoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoOrders getTotNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.TotNoOrders());
+ }
+
+ public boolean isSet(quickfix.field.TotNoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoOrders() {
+ return isSetField(68);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoOrders get(quickfix.field.NoOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoOrders getNoOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoOrders() {
+ return isSetField(73);
+ }
+
+ public static class NoOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {11, 526, 67, 583, 160, 453, 229, 75, 1, 660, 581, 589, 590, 70, 591, 78, 63, 64, 544, 635, 21, 18, 110, 111, 100, 386, 81, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 140, 54, 401, 114, 60, 232, 854, 38, 152, 516, 468, 469, 40, 423, 44, 99, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 15, 376, 377, 23, 117, 59, 168, 432, 126, 427, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 193, 192, 640, 77, 203, 210, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 494, 0};
+
+ public NoOrders() {
+ super(73, 11, ORDER);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ListSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListSeqNo get(quickfix.field.ListSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListSeqNo getListSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.ListSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.ListSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListSeqNo() {
+ return isSetField(67);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.SettlInstMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMode get(quickfix.field.SettlInstMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMode getSettlInstMode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMode() {
+ return isSetField(160);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 539, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.SideValueInd value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideValueInd get(quickfix.field.SideValueInd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideValueInd getSideValueInd() throws FieldNotFound {
+ return get(new quickfix.field.SideValueInd());
+ }
+
+ public boolean isSet(quickfix.field.SideValueInd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideValueInd() {
+ return isSetField(401);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Price2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price2 get(quickfix.field.Price2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price2 getPrice2() throws FieldNotFound {
+ return get(new quickfix.field.Price2());
+ }
+
+ public boolean isSet(quickfix.field.Price2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice2() {
+ return isSetField(640);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderMultileg.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderMultileg.java
new file mode 100644
index 000000000..174cf5952
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderMultileg.java
@@ -0,0 +1,6350 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NewOrderMultileg extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AB";
+
+
+ public NewOrderMultileg() {
+
+ super(new int[] {11, 526, 583, 453, 229, 75, 1, 660, 581, 589, 590, 591, 70, 78, 63, 64, 544, 635, 21, 18, 110, 111, 100, 386, 81, 54, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 140, 555, 114, 60, 854, 38, 152, 516, 468, 469, 40, 423, 44, 99, 15, 376, 377, 23, 117, 59, 168, 432, 126, 427, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 77, 203, 210, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 480, 481, 513, 494, 563, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NewOrderMultileg(quickfix.field.ClOrdID clOrdID, quickfix.field.Side side, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(clOrdID);
+ setField(side);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 948, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties3 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties3 get(quickfix.fix44.component.NestedParties3 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties3 getNestedParties3() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties3());
+ }
+
+ public void set(quickfix.field.NoNested3PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested3PartyIDs get(quickfix.field.NoNested3PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested3PartyIDs getNoNested3PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested3PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested3PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested3PartyIDs() {
+ return isSetField(948);
+ }
+
+ public static class NoNested3PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {949, 950, 951, 952, 0};
+
+ public NoNested3PartyIDs() {
+ super(948, 949, ORDER);
+ }
+
+ public void set(quickfix.field.Nested3PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartyID get(quickfix.field.Nested3PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartyID getNested3PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartyID() {
+ return isSetField(949);
+ }
+
+ public void set(quickfix.field.Nested3PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartyIDSource get(quickfix.field.Nested3PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartyIDSource getNested3PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartyIDSource() {
+ return isSetField(950);
+ }
+
+ public void set(quickfix.field.Nested3PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartyRole get(quickfix.field.Nested3PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartyRole getNested3PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartyRole() {
+ return isSetField(951);
+ }
+
+ public void set(quickfix.field.NoNested3PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested3PartySubIDs get(quickfix.field.NoNested3PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested3PartySubIDs getNoNested3PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested3PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested3PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested3PartySubIDs() {
+ return isSetField(952);
+ }
+
+ public static class NoNested3PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {953, 954, 0};
+
+ public NoNested3PartySubIDs() {
+ super(952, 953, ORDER);
+ }
+
+ public void set(quickfix.field.Nested3PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartySubID get(quickfix.field.Nested3PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartySubID getNested3PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartySubID() {
+ return isSetField(953);
+ }
+
+ public void set(quickfix.field.Nested3PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested3PartySubIDType get(quickfix.field.Nested3PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested3PartySubIDType getNested3PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested3PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested3PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested3PartySubIDType() {
+ return isSetField(954);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 683, 670, 564, 565, 539, 654, 566, 587, 588, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegAllocs get(quickfix.field.NoLegAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegAllocs getNoLegAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegAllocs() {
+ return isSetField(670);
+ }
+
+ public static class NoLegAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {671, 672, 756, 673, 674, 675, 0};
+
+ public NoLegAllocs() {
+ super(670, 671, ORDER);
+ }
+
+ public void set(quickfix.field.LegAllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegAllocAccount get(quickfix.field.LegAllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegAllocAccount getLegAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.LegAllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.LegAllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegAllocAccount() {
+ return isSetField(671);
+ }
+
+ public void set(quickfix.field.LegIndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIndividualAllocID get(quickfix.field.LegIndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIndividualAllocID getLegIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.LegIndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.LegIndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIndividualAllocID() {
+ return isSetField(672);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegAllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegAllocQty get(quickfix.field.LegAllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegAllocQty getLegAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.LegAllocQty());
+ }
+
+ public boolean isSet(quickfix.field.LegAllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegAllocQty() {
+ return isSetField(673);
+ }
+
+ public void set(quickfix.field.LegAllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegAllocAcctIDSource get(quickfix.field.LegAllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegAllocAcctIDSource getLegAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegAllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegAllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegAllocAcctIDSource() {
+ return isSetField(674);
+ }
+
+ public void set(quickfix.field.LegSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlCurrency get(quickfix.field.LegSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlCurrency getLegSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlCurrency() {
+ return isSetField(675);
+ }
+
+ }
+
+ public void set(quickfix.field.LegPositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPositionEffect get(quickfix.field.LegPositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPositionEffect getLegPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.LegPositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.LegPositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPositionEffect() {
+ return isSetField(564);
+ }
+
+ public void set(quickfix.field.LegCoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCoveredOrUncovered get(quickfix.field.LegCoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCoveredOrUncovered getLegCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.LegCoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.LegCoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCoveredOrUncovered() {
+ return isSetField(565);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRefID get(quickfix.field.LegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRefID getLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.LegRefID());
+ }
+
+ public boolean isSet(quickfix.field.LegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRefID() {
+ return isSetField(654);
+ }
+
+ public void set(quickfix.field.LegPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPrice get(quickfix.field.LegPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPrice getLegPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPrice() {
+ return isSetField(566);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+ public void set(quickfix.field.MultiLegRptTypeReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.MultiLegRptTypeReq get(quickfix.field.MultiLegRptTypeReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MultiLegRptTypeReq getMultiLegRptTypeReq() throws FieldNotFound {
+ return get(new quickfix.field.MultiLegRptTypeReq());
+ }
+
+ public boolean isSet(quickfix.field.MultiLegRptTypeReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMultiLegRptTypeReq() {
+ return isSetField(563);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderSingle.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderSingle.java
new file mode 100644
index 000000000..71a03a932
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/NewOrderSingle.java
@@ -0,0 +1,5265 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class NewOrderSingle extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "D";
+
+
+ public NewOrderSingle() {
+
+ super(new int[] {11, 526, 583, 453, 229, 75, 1, 660, 581, 589, 590, 591, 70, 78, 63, 64, 544, 635, 21, 18, 110, 111, 100, 386, 81, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 140, 54, 114, 60, 232, 854, 38, 152, 516, 468, 469, 40, 423, 44, 99, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 15, 376, 377, 23, 117, 59, 168, 432, 126, 427, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 193, 192, 640, 77, 203, 210, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 480, 481, 513, 494, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public NewOrderSingle(quickfix.field.ClOrdID clOrdID, quickfix.field.Side side, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(clOrdID);
+ setField(side);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 539, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Price2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price2 get(quickfix.field.Price2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price2 getPrice2() throws FieldNotFound {
+ return get(new quickfix.field.Price2());
+ }
+
+ public boolean isSet(quickfix.field.Price2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice2() {
+ return isSetField(640);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/News.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/News.java
new file mode 100644
index 000000000..32a700d34
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/News.java
@@ -0,0 +1,3590 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class News extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "B";
+
+
+ public News() {
+
+ super(new int[] {42, 61, 148, 358, 359, 215, 146, 555, 711, 33, 149, 95, 96, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public News(quickfix.field.Headline headline) {
+ this();
+ setField(headline);
+ }
+
+ public void set(quickfix.field.OrigTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigTime get(quickfix.field.OrigTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigTime getOrigTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigTime() {
+ return isSetField(42);
+ }
+
+ public void set(quickfix.field.Urgency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Urgency get(quickfix.field.Urgency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Urgency getUrgency() throws FieldNotFound {
+ return get(new quickfix.field.Urgency());
+ }
+
+ public boolean isSet(quickfix.field.Urgency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUrgency() {
+ return isSetField(61);
+ }
+
+ public void set(quickfix.field.Headline value) {
+ setField(value);
+ }
+
+ public quickfix.field.Headline get(quickfix.field.Headline value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Headline getHeadline() throws FieldNotFound {
+ return get(new quickfix.field.Headline());
+ }
+
+ public boolean isSet(quickfix.field.Headline field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHeadline() {
+ return isSetField(148);
+ }
+
+ public void set(quickfix.field.EncodedHeadlineLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedHeadlineLen get(quickfix.field.EncodedHeadlineLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedHeadlineLen getEncodedHeadlineLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedHeadlineLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedHeadlineLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedHeadlineLen() {
+ return isSetField(358);
+ }
+
+ public void set(quickfix.field.EncodedHeadline value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedHeadline get(quickfix.field.EncodedHeadline value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedHeadline getEncodedHeadline() throws FieldNotFound {
+ return get(new quickfix.field.EncodedHeadline());
+ }
+
+ public boolean isSet(quickfix.field.EncodedHeadline field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedHeadline() {
+ return isSetField(359);
+ }
+
+ public void set(quickfix.field.NoRoutingIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRoutingIDs get(quickfix.field.NoRoutingIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRoutingIDs getNoRoutingIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoRoutingIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoRoutingIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRoutingIDs() {
+ return isSetField(215);
+ }
+
+ public static class NoRoutingIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {216, 217, 0};
+
+ public NoRoutingIDs() {
+ super(215, 216, ORDER);
+ }
+
+ public void set(quickfix.field.RoutingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingType get(quickfix.field.RoutingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingType getRoutingType() throws FieldNotFound {
+ return get(new quickfix.field.RoutingType());
+ }
+
+ public boolean isSet(quickfix.field.RoutingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingType() {
+ return isSetField(216);
+ }
+
+ public void set(quickfix.field.RoutingID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoutingID get(quickfix.field.RoutingID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoutingID getRoutingID() throws FieldNotFound {
+ return get(new quickfix.field.RoutingID());
+ }
+
+ public boolean isSet(quickfix.field.RoutingID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoutingID() {
+ return isSetField(217);
+ }
+
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LinesOfText value) {
+ setField(value);
+ }
+
+ public quickfix.field.LinesOfText get(quickfix.field.LinesOfText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LinesOfText getLinesOfText() throws FieldNotFound {
+ return get(new quickfix.field.LinesOfText());
+ }
+
+ public boolean isSet(quickfix.field.LinesOfText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLinesOfText() {
+ return isSetField(33);
+ }
+
+ public static class LinesOfText extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {58, 354, 355, 0};
+
+ public LinesOfText() {
+ super(33, 58, ORDER);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+ public void set(quickfix.field.URLLink value) {
+ setField(value);
+ }
+
+ public quickfix.field.URLLink get(quickfix.field.URLLink value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.URLLink getURLLink() throws FieldNotFound {
+ return get(new quickfix.field.URLLink());
+ }
+
+ public boolean isSet(quickfix.field.URLLink field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetURLLink() {
+ return isSetField(149);
+ }
+
+ public void set(quickfix.field.RawDataLength value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawDataLength get(quickfix.field.RawDataLength value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawDataLength getRawDataLength() throws FieldNotFound {
+ return get(new quickfix.field.RawDataLength());
+ }
+
+ public boolean isSet(quickfix.field.RawDataLength field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawDataLength() {
+ return isSetField(95);
+ }
+
+ public void set(quickfix.field.RawData value) {
+ setField(value);
+ }
+
+ public quickfix.field.RawData get(quickfix.field.RawData value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RawData getRawData() throws FieldNotFound {
+ return get(new quickfix.field.RawData());
+ }
+
+ public boolean isSet(quickfix.field.RawData field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRawData() {
+ return isSetField(96);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelReject.java
new file mode 100644
index 000000000..1f6e92fc1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelReject.java
@@ -0,0 +1,470 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class OrderCancelReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "9";
+
+
+ public OrderCancelReject() {
+
+ super(new int[] {37, 198, 526, 11, 583, 41, 39, 636, 586, 66, 1, 660, 581, 229, 75, 60, 434, 102, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderCancelReject(quickfix.field.OrderID orderID, quickfix.field.ClOrdID clOrdID, quickfix.field.OrigClOrdID origClOrdID, quickfix.field.OrdStatus ordStatus, quickfix.field.CxlRejResponseTo cxlRejResponseTo) {
+ this();
+ setField(orderID);
+ setField(clOrdID);
+ setField(origClOrdID);
+ setField(ordStatus);
+ setField(cxlRejResponseTo);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.WorkingIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.WorkingIndicator get(quickfix.field.WorkingIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.WorkingIndicator getWorkingIndicator() throws FieldNotFound {
+ return get(new quickfix.field.WorkingIndicator());
+ }
+
+ public boolean isSet(quickfix.field.WorkingIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetWorkingIndicator() {
+ return isSetField(636);
+ }
+
+ public void set(quickfix.field.OrigOrdModTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigOrdModTime get(quickfix.field.OrigOrdModTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigOrdModTime getOrigOrdModTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigOrdModTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigOrdModTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigOrdModTime() {
+ return isSetField(586);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.CxlRejResponseTo value) {
+ setField(value);
+ }
+
+ public quickfix.field.CxlRejResponseTo get(quickfix.field.CxlRejResponseTo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CxlRejResponseTo getCxlRejResponseTo() throws FieldNotFound {
+ return get(new quickfix.field.CxlRejResponseTo());
+ }
+
+ public boolean isSet(quickfix.field.CxlRejResponseTo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCxlRejResponseTo() {
+ return isSetField(434);
+ }
+
+ public void set(quickfix.field.CxlRejReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.CxlRejReason get(quickfix.field.CxlRejReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CxlRejReason getCxlRejReason() throws FieldNotFound {
+ return get(new quickfix.field.CxlRejReason());
+ }
+
+ public boolean isSet(quickfix.field.CxlRejReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCxlRejReason() {
+ return isSetField(102);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelReplaceRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelReplaceRequest.java
new file mode 100644
index 000000000..d40d09a3b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelReplaceRequest.java
@@ -0,0 +1,5179 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderCancelReplaceRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "G";
+
+
+ public OrderCancelReplaceRequest() {
+
+ super(new int[] {37, 453, 229, 75, 41, 11, 526, 583, 66, 586, 1, 660, 581, 589, 590, 591, 70, 78, 63, 64, 544, 635, 21, 18, 110, 111, 100, 386, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 60, 854, 38, 152, 516, 468, 469, 40, 423, 44, 99, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 211, 835, 836, 837, 838, 840, 388, 389, 841, 842, 843, 844, 846, 847, 848, 849, 376, 377, 15, 59, 168, 432, 126, 427, 12, 13, 479, 497, 528, 529, 582, 121, 120, 775, 58, 354, 355, 193, 192, 640, 77, 203, 210, 114, 480, 481, 513, 494, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderCancelReplaceRequest(quickfix.field.OrigClOrdID origClOrdID, quickfix.field.ClOrdID clOrdID, quickfix.field.Side side, quickfix.field.TransactTime transactTime, quickfix.field.OrdType ordType) {
+ this();
+ setField(origClOrdID);
+ setField(clOrdID);
+ setField(side);
+ setField(transactTime);
+ setField(ordType);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.OrigOrdModTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigOrdModTime get(quickfix.field.OrigOrdModTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigOrdModTime getOrigOrdModTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigOrdModTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigOrdModTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigOrdModTime() {
+ return isSetField(586);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.DayBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DayBookingInst get(quickfix.field.DayBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DayBookingInst getDayBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.DayBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.DayBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDayBookingInst() {
+ return isSetField(589);
+ }
+
+ public void set(quickfix.field.BookingUnit value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingUnit get(quickfix.field.BookingUnit value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingUnit getBookingUnit() throws FieldNotFound {
+ return get(new quickfix.field.BookingUnit());
+ }
+
+ public boolean isSet(quickfix.field.BookingUnit field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingUnit() {
+ return isSetField(590);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 539, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.CashMargin value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashMargin get(quickfix.field.CashMargin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashMargin getCashMargin() throws FieldNotFound {
+ return get(new quickfix.field.CashMargin());
+ }
+
+ public boolean isSet(quickfix.field.CashMargin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashMargin() {
+ return isSetField(544);
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.HandlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.HandlInst get(quickfix.field.HandlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HandlInst getHandlInst() throws FieldNotFound {
+ return get(new quickfix.field.HandlInst());
+ }
+
+ public boolean isSet(quickfix.field.HandlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHandlInst() {
+ return isSetField(21);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.MinQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinQty get(quickfix.field.MinQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinQty getMinQty() throws FieldNotFound {
+ return get(new quickfix.field.MinQty());
+ }
+
+ public boolean isSet(quickfix.field.MinQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinQty() {
+ return isSetField(110);
+ }
+
+ public void set(quickfix.field.MaxFloor value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxFloor get(quickfix.field.MaxFloor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxFloor getMaxFloor() throws FieldNotFound {
+ return get(new quickfix.field.MaxFloor());
+ }
+
+ public boolean isSet(quickfix.field.MaxFloor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxFloor() {
+ return isSetField(111);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.StopPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.StopPx get(quickfix.field.StopPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StopPx getStopPx() throws FieldNotFound {
+ return get(new quickfix.field.StopPx());
+ }
+
+ public boolean isSet(quickfix.field.StopPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStopPx() {
+ return isSetField(99);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.fix44.component.PegInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PegInstructions get(quickfix.fix44.component.PegInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PegInstructions getPegInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PegInstructions());
+ }
+
+ public void set(quickfix.field.PegOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetValue get(quickfix.field.PegOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetValue getPegOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetValue() {
+ return isSetField(211);
+ }
+
+ public void set(quickfix.field.PegMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegMoveType get(quickfix.field.PegMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegMoveType getPegMoveType() throws FieldNotFound {
+ return get(new quickfix.field.PegMoveType());
+ }
+
+ public boolean isSet(quickfix.field.PegMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegMoveType() {
+ return isSetField(835);
+ }
+
+ public void set(quickfix.field.PegOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegOffsetType get(quickfix.field.PegOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegOffsetType getPegOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.PegOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.PegOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegOffsetType() {
+ return isSetField(836);
+ }
+
+ public void set(quickfix.field.PegLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegLimitType get(quickfix.field.PegLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegLimitType getPegLimitType() throws FieldNotFound {
+ return get(new quickfix.field.PegLimitType());
+ }
+
+ public boolean isSet(quickfix.field.PegLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegLimitType() {
+ return isSetField(837);
+ }
+
+ public void set(quickfix.field.PegRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegRoundDirection get(quickfix.field.PegRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegRoundDirection getPegRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.PegRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.PegRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegRoundDirection() {
+ return isSetField(838);
+ }
+
+ public void set(quickfix.field.PegScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.PegScope get(quickfix.field.PegScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PegScope getPegScope() throws FieldNotFound {
+ return get(new quickfix.field.PegScope());
+ }
+
+ public boolean isSet(quickfix.field.PegScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPegScope() {
+ return isSetField(840);
+ }
+
+ public void set(quickfix.fix44.component.DiscretionInstructions component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions get(quickfix.fix44.component.DiscretionInstructions component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.DiscretionInstructions getDiscretionInstructions() throws FieldNotFound {
+ return get(new quickfix.fix44.component.DiscretionInstructions());
+ }
+
+ public void set(quickfix.field.DiscretionInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionInst get(quickfix.field.DiscretionInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionInst getDiscretionInst() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionInst());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionInst() {
+ return isSetField(388);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetValue get(quickfix.field.DiscretionOffsetValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetValue getDiscretionOffsetValue() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetValue());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetValue() {
+ return isSetField(389);
+ }
+
+ public void set(quickfix.field.DiscretionMoveType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionMoveType get(quickfix.field.DiscretionMoveType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionMoveType getDiscretionMoveType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionMoveType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionMoveType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionMoveType() {
+ return isSetField(841);
+ }
+
+ public void set(quickfix.field.DiscretionOffsetType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionOffsetType get(quickfix.field.DiscretionOffsetType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionOffsetType getDiscretionOffsetType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionOffsetType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionOffsetType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionOffsetType() {
+ return isSetField(842);
+ }
+
+ public void set(quickfix.field.DiscretionLimitType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionLimitType get(quickfix.field.DiscretionLimitType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionLimitType getDiscretionLimitType() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionLimitType());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionLimitType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionLimitType() {
+ return isSetField(843);
+ }
+
+ public void set(quickfix.field.DiscretionRoundDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionRoundDirection get(quickfix.field.DiscretionRoundDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionRoundDirection getDiscretionRoundDirection() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionRoundDirection());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionRoundDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionRoundDirection() {
+ return isSetField(844);
+ }
+
+ public void set(quickfix.field.DiscretionScope value) {
+ setField(value);
+ }
+
+ public quickfix.field.DiscretionScope get(quickfix.field.DiscretionScope value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DiscretionScope getDiscretionScope() throws FieldNotFound {
+ return get(new quickfix.field.DiscretionScope());
+ }
+
+ public boolean isSet(quickfix.field.DiscretionScope field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDiscretionScope() {
+ return isSetField(846);
+ }
+
+ public void set(quickfix.field.TargetStrategy value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategy get(quickfix.field.TargetStrategy value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategy getTargetStrategy() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategy());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategy field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategy() {
+ return isSetField(847);
+ }
+
+ public void set(quickfix.field.TargetStrategyParameters value) {
+ setField(value);
+ }
+
+ public quickfix.field.TargetStrategyParameters get(quickfix.field.TargetStrategyParameters value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TargetStrategyParameters getTargetStrategyParameters() throws FieldNotFound {
+ return get(new quickfix.field.TargetStrategyParameters());
+ }
+
+ public boolean isSet(quickfix.field.TargetStrategyParameters field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTargetStrategyParameters() {
+ return isSetField(848);
+ }
+
+ public void set(quickfix.field.ParticipationRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ParticipationRate get(quickfix.field.ParticipationRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ParticipationRate getParticipationRate() throws FieldNotFound {
+ return get(new quickfix.field.ParticipationRate());
+ }
+
+ public boolean isSet(quickfix.field.ParticipationRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetParticipationRate() {
+ return isSetField(849);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TimeInForce value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeInForce get(quickfix.field.TimeInForce value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeInForce getTimeInForce() throws FieldNotFound {
+ return get(new quickfix.field.TimeInForce());
+ }
+
+ public boolean isSet(quickfix.field.TimeInForce field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeInForce() {
+ return isSetField(59);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireDate get(quickfix.field.ExpireDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireDate getExpireDate() throws FieldNotFound {
+ return get(new quickfix.field.ExpireDate());
+ }
+
+ public boolean isSet(quickfix.field.ExpireDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireDate() {
+ return isSetField(432);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.GTBookingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.GTBookingInst get(quickfix.field.GTBookingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GTBookingInst getGTBookingInst() throws FieldNotFound {
+ return get(new quickfix.field.GTBookingInst());
+ }
+
+ public boolean isSet(quickfix.field.GTBookingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGTBookingInst() {
+ return isSetField(427);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ForexReq value) {
+ setField(value);
+ }
+
+ public quickfix.field.ForexReq get(quickfix.field.ForexReq value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ForexReq getForexReq() throws FieldNotFound {
+ return get(new quickfix.field.ForexReq());
+ }
+
+ public boolean isSet(quickfix.field.ForexReq field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetForexReq() {
+ return isSetField(121);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.BookingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BookingType get(quickfix.field.BookingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BookingType getBookingType() throws FieldNotFound {
+ return get(new quickfix.field.BookingType());
+ }
+
+ public boolean isSet(quickfix.field.BookingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBookingType() {
+ return isSetField(775);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Price2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price2 get(quickfix.field.Price2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price2 getPrice2() throws FieldNotFound {
+ return get(new quickfix.field.Price2());
+ }
+
+ public boolean isSet(quickfix.field.Price2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice2() {
+ return isSetField(640);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.CoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.CoveredOrUncovered get(quickfix.field.CoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CoveredOrUncovered getCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.CoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.CoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCoveredOrUncovered() {
+ return isSetField(203);
+ }
+
+ public void set(quickfix.field.MaxShow value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaxShow get(quickfix.field.MaxShow value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaxShow getMaxShow() throws FieldNotFound {
+ return get(new quickfix.field.MaxShow());
+ }
+
+ public boolean isSet(quickfix.field.MaxShow field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaxShow() {
+ return isSetField(210);
+ }
+
+ public void set(quickfix.field.LocateReqd value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocateReqd get(quickfix.field.LocateReqd value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocateReqd getLocateReqd() throws FieldNotFound {
+ return get(new quickfix.field.LocateReqd());
+ }
+
+ public boolean isSet(quickfix.field.LocateReqd field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocateReqd() {
+ return isSetField(114);
+ }
+
+ public void set(quickfix.field.CancellationRights value) {
+ setField(value);
+ }
+
+ public quickfix.field.CancellationRights get(quickfix.field.CancellationRights value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CancellationRights getCancellationRights() throws FieldNotFound {
+ return get(new quickfix.field.CancellationRights());
+ }
+
+ public boolean isSet(quickfix.field.CancellationRights field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCancellationRights() {
+ return isSetField(480);
+ }
+
+ public void set(quickfix.field.MoneyLaunderingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MoneyLaunderingStatus get(quickfix.field.MoneyLaunderingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MoneyLaunderingStatus getMoneyLaunderingStatus() throws FieldNotFound {
+ return get(new quickfix.field.MoneyLaunderingStatus());
+ }
+
+ public boolean isSet(quickfix.field.MoneyLaunderingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMoneyLaunderingStatus() {
+ return isSetField(481);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.Designation value) {
+ setField(value);
+ }
+
+ public quickfix.field.Designation get(quickfix.field.Designation value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Designation getDesignation() throws FieldNotFound {
+ return get(new quickfix.field.Designation());
+ }
+
+ public boolean isSet(quickfix.field.Designation field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDesignation() {
+ return isSetField(494);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelRequest.java
new file mode 100644
index 000000000..91e54caf3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderCancelRequest.java
@@ -0,0 +1,3082 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderCancelRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "F";
+
+
+ public OrderCancelRequest() {
+
+ super(new int[] {41, 37, 11, 526, 583, 66, 586, 1, 660, 581, 453, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 60, 38, 152, 516, 468, 469, 376, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderCancelRequest(quickfix.field.OrigClOrdID origClOrdID, quickfix.field.ClOrdID clOrdID, quickfix.field.Side side, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(origClOrdID);
+ setField(clOrdID);
+ setField(side);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.field.OrigOrdModTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigOrdModTime get(quickfix.field.OrigOrdModTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigOrdModTime getOrigOrdModTime() throws FieldNotFound {
+ return get(new quickfix.field.OrigOrdModTime());
+ }
+
+ public boolean isSet(quickfix.field.OrigOrdModTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigOrdModTime() {
+ return isSetField(586);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassCancelReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassCancelReport.java
new file mode 100644
index 000000000..3ff62d0a1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassCancelReport.java
@@ -0,0 +1,2621 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderMassCancelReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "r";
+
+
+ public OrderMassCancelReport() {
+
+ super(new int[] {11, 526, 37, 198, 530, 531, 532, 533, 534, 336, 625, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 54, 60, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderMassCancelReport(quickfix.field.OrderID orderID, quickfix.field.MassCancelRequestType massCancelRequestType, quickfix.field.MassCancelResponse massCancelResponse) {
+ this();
+ setField(orderID);
+ setField(massCancelRequestType);
+ setField(massCancelResponse);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.MassCancelRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassCancelRequestType get(quickfix.field.MassCancelRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassCancelRequestType getMassCancelRequestType() throws FieldNotFound {
+ return get(new quickfix.field.MassCancelRequestType());
+ }
+
+ public boolean isSet(quickfix.field.MassCancelRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassCancelRequestType() {
+ return isSetField(530);
+ }
+
+ public void set(quickfix.field.MassCancelResponse value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassCancelResponse get(quickfix.field.MassCancelResponse value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassCancelResponse getMassCancelResponse() throws FieldNotFound {
+ return get(new quickfix.field.MassCancelResponse());
+ }
+
+ public boolean isSet(quickfix.field.MassCancelResponse field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassCancelResponse() {
+ return isSetField(531);
+ }
+
+ public void set(quickfix.field.MassCancelRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassCancelRejectReason get(quickfix.field.MassCancelRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassCancelRejectReason getMassCancelRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.MassCancelRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.MassCancelRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassCancelRejectReason() {
+ return isSetField(532);
+ }
+
+ public void set(quickfix.field.TotalAffectedOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalAffectedOrders get(quickfix.field.TotalAffectedOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalAffectedOrders getTotalAffectedOrders() throws FieldNotFound {
+ return get(new quickfix.field.TotalAffectedOrders());
+ }
+
+ public boolean isSet(quickfix.field.TotalAffectedOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalAffectedOrders() {
+ return isSetField(533);
+ }
+
+ public void set(quickfix.field.NoAffectedOrders value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAffectedOrders get(quickfix.field.NoAffectedOrders value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAffectedOrders getNoAffectedOrders() throws FieldNotFound {
+ return get(new quickfix.field.NoAffectedOrders());
+ }
+
+ public boolean isSet(quickfix.field.NoAffectedOrders field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAffectedOrders() {
+ return isSetField(534);
+ }
+
+ public static class NoAffectedOrders extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {41, 535, 536, 0};
+
+ public NoAffectedOrders() {
+ super(534, 41, ORDER);
+ }
+
+ public void set(quickfix.field.OrigClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigClOrdID get(quickfix.field.OrigClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigClOrdID getOrigClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.OrigClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.OrigClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigClOrdID() {
+ return isSetField(41);
+ }
+
+ public void set(quickfix.field.AffectedOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AffectedOrderID get(quickfix.field.AffectedOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AffectedOrderID getAffectedOrderID() throws FieldNotFound {
+ return get(new quickfix.field.AffectedOrderID());
+ }
+
+ public boolean isSet(quickfix.field.AffectedOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAffectedOrderID() {
+ return isSetField(535);
+ }
+
+ public void set(quickfix.field.AffectedSecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AffectedSecondaryOrderID get(quickfix.field.AffectedSecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AffectedSecondaryOrderID getAffectedSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.AffectedSecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.AffectedSecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAffectedSecondaryOrderID() {
+ return isSetField(536);
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassCancelRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassCancelRequest.java
new file mode 100644
index 000000000..a043b1c30
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassCancelRequest.java
@@ -0,0 +1,2421 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderMassCancelRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "q";
+
+
+ public OrderMassCancelRequest() {
+
+ super(new int[] {11, 526, 530, 336, 625, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 54, 60, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderMassCancelRequest(quickfix.field.ClOrdID clOrdID, quickfix.field.MassCancelRequestType massCancelRequestType, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(clOrdID);
+ setField(massCancelRequestType);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.MassCancelRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassCancelRequestType get(quickfix.field.MassCancelRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassCancelRequestType getMassCancelRequestType() throws FieldNotFound {
+ return get(new quickfix.field.MassCancelRequestType());
+ }
+
+ public boolean isSet(quickfix.field.MassCancelRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassCancelRequestType() {
+ return isSetField(530);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassStatusRequest.java
new file mode 100644
index 000000000..247dbedd5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderMassStatusRequest.java
@@ -0,0 +1,2539 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderMassStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AF";
+
+
+ public OrderMassStatusRequest() {
+
+ super(new int[] {584, 585, 453, 1, 660, 336, 625, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 54, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderMassStatusRequest(quickfix.field.MassStatusReqID massStatusReqID, quickfix.field.MassStatusReqType massStatusReqType) {
+ this();
+ setField(massStatusReqID);
+ setField(massStatusReqType);
+ }
+
+ public void set(quickfix.field.MassStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassStatusReqID get(quickfix.field.MassStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassStatusReqID getMassStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.MassStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.MassStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassStatusReqID() {
+ return isSetField(584);
+ }
+
+ public void set(quickfix.field.MassStatusReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MassStatusReqType get(quickfix.field.MassStatusReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MassStatusReqType getMassStatusReqType() throws FieldNotFound {
+ return get(new quickfix.field.MassStatusReqType());
+ }
+
+ public boolean isSet(quickfix.field.MassStatusReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMassStatusReqType() {
+ return isSetField(585);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderStatusRequest.java
new file mode 100644
index 000000000..871eda574
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/OrderStatusRequest.java
@@ -0,0 +1,2794 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class OrderStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "H";
+
+
+ public OrderStatusRequest() {
+
+ super(new int[] {37, 11, 526, 583, 453, 790, 1, 660, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public OrderStatusRequest(quickfix.field.ClOrdID clOrdID, quickfix.field.Side side) {
+ this();
+ setField(clOrdID);
+ setField(side);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ClOrdLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdLinkID get(quickfix.field.ClOrdLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdLinkID getClOrdLinkID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdLinkID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdLinkID() {
+ return isSetField(583);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.OrdStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatusReqID get(quickfix.field.OrdStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatusReqID getOrdStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatusReqID() {
+ return isSetField(790);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionMaintenanceReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionMaintenanceReport.java
new file mode 100644
index 000000000..a84316f4c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionMaintenanceReport.java
@@ -0,0 +1,4303 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class PositionMaintenanceReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AM";
+
+
+ public PositionMaintenanceReport() {
+
+ super(new int[] {721, 709, 710, 712, 713, 722, 723, 715, 716, 717, 453, 1, 660, 581, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 555, 711, 386, 60, 702, 753, 718, 834, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public PositionMaintenanceReport(quickfix.field.PosMaintRptID posMaintRptID, quickfix.field.PosTransType posTransType, quickfix.field.PosMaintAction posMaintAction, quickfix.field.OrigPosReqRefID origPosReqRefID, quickfix.field.PosMaintStatus posMaintStatus, quickfix.field.ClearingBusinessDate clearingBusinessDate, quickfix.field.Account account, quickfix.field.AccountType accountType, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(posMaintRptID);
+ setField(posTransType);
+ setField(posMaintAction);
+ setField(origPosReqRefID);
+ setField(posMaintStatus);
+ setField(clearingBusinessDate);
+ setField(account);
+ setField(accountType);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.PosMaintRptID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintRptID get(quickfix.field.PosMaintRptID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintRptID getPosMaintRptID() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintRptID());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintRptID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintRptID() {
+ return isSetField(721);
+ }
+
+ public void set(quickfix.field.PosTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosTransType get(quickfix.field.PosTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosTransType getPosTransType() throws FieldNotFound {
+ return get(new quickfix.field.PosTransType());
+ }
+
+ public boolean isSet(quickfix.field.PosTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosTransType() {
+ return isSetField(709);
+ }
+
+ public void set(quickfix.field.PosReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqID get(quickfix.field.PosReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqID getPosReqID() throws FieldNotFound {
+ return get(new quickfix.field.PosReqID());
+ }
+
+ public boolean isSet(quickfix.field.PosReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqID() {
+ return isSetField(710);
+ }
+
+ public void set(quickfix.field.PosMaintAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintAction get(quickfix.field.PosMaintAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintAction getPosMaintAction() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintAction());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintAction() {
+ return isSetField(712);
+ }
+
+ public void set(quickfix.field.OrigPosReqRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigPosReqRefID get(quickfix.field.OrigPosReqRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigPosReqRefID getOrigPosReqRefID() throws FieldNotFound {
+ return get(new quickfix.field.OrigPosReqRefID());
+ }
+
+ public boolean isSet(quickfix.field.OrigPosReqRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigPosReqRefID() {
+ return isSetField(713);
+ }
+
+ public void set(quickfix.field.PosMaintStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintStatus get(quickfix.field.PosMaintStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintStatus getPosMaintStatus() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintStatus());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintStatus() {
+ return isSetField(722);
+ }
+
+ public void set(quickfix.field.PosMaintResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintResult get(quickfix.field.PosMaintResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintResult getPosMaintResult() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintResult());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintResult() {
+ return isSetField(723);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.PositionQty component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionQty get(quickfix.fix44.component.PositionQty component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionQty getPositionQty() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionQty());
+ }
+
+ public void set(quickfix.field.NoPositions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPositions get(quickfix.field.NoPositions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPositions getNoPositions() throws FieldNotFound {
+ return get(new quickfix.field.NoPositions());
+ }
+
+ public boolean isSet(quickfix.field.NoPositions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPositions() {
+ return isSetField(702);
+ }
+
+ public static class NoPositions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {703, 704, 705, 706, 539, 0};
+
+ public NoPositions() {
+ super(702, 703, ORDER);
+ }
+
+ public void set(quickfix.field.PosType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosType get(quickfix.field.PosType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosType getPosType() throws FieldNotFound {
+ return get(new quickfix.field.PosType());
+ }
+
+ public boolean isSet(quickfix.field.PosType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosType() {
+ return isSetField(703);
+ }
+
+ public void set(quickfix.field.LongQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LongQty get(quickfix.field.LongQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LongQty getLongQty() throws FieldNotFound {
+ return get(new quickfix.field.LongQty());
+ }
+
+ public boolean isSet(quickfix.field.LongQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLongQty() {
+ return isSetField(704);
+ }
+
+ public void set(quickfix.field.ShortQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.ShortQty get(quickfix.field.ShortQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ShortQty getShortQty() throws FieldNotFound {
+ return get(new quickfix.field.ShortQty());
+ }
+
+ public boolean isSet(quickfix.field.ShortQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShortQty() {
+ return isSetField(705);
+ }
+
+ public void set(quickfix.field.PosQtyStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosQtyStatus get(quickfix.field.PosQtyStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosQtyStatus getPosQtyStatus() throws FieldNotFound {
+ return get(new quickfix.field.PosQtyStatus());
+ }
+
+ public boolean isSet(quickfix.field.PosQtyStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosQtyStatus() {
+ return isSetField(706);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.PositionAmountData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionAmountData get(quickfix.fix44.component.PositionAmountData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionAmountData getPositionAmountData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionAmountData());
+ }
+
+ public void set(quickfix.field.NoPosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPosAmt get(quickfix.field.NoPosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPosAmt getNoPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.NoPosAmt());
+ }
+
+ public boolean isSet(quickfix.field.NoPosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPosAmt() {
+ return isSetField(753);
+ }
+
+ public static class NoPosAmt extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {707, 708, 0};
+
+ public NoPosAmt() {
+ super(753, 707, ORDER);
+ }
+
+ public void set(quickfix.field.PosAmtType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmtType get(quickfix.field.PosAmtType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmtType getPosAmtType() throws FieldNotFound {
+ return get(new quickfix.field.PosAmtType());
+ }
+
+ public boolean isSet(quickfix.field.PosAmtType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmtType() {
+ return isSetField(707);
+ }
+
+ public void set(quickfix.field.PosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmt get(quickfix.field.PosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmt getPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.PosAmt());
+ }
+
+ public boolean isSet(quickfix.field.PosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmt() {
+ return isSetField(708);
+ }
+
+ }
+
+ public void set(quickfix.field.AdjustmentType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdjustmentType get(quickfix.field.AdjustmentType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdjustmentType getAdjustmentType() throws FieldNotFound {
+ return get(new quickfix.field.AdjustmentType());
+ }
+
+ public boolean isSet(quickfix.field.AdjustmentType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdjustmentType() {
+ return isSetField(718);
+ }
+
+ public void set(quickfix.field.ThresholdAmount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ThresholdAmount get(quickfix.field.ThresholdAmount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ThresholdAmount getThresholdAmount() throws FieldNotFound {
+ return get(new quickfix.field.ThresholdAmount());
+ }
+
+ public boolean isSet(quickfix.field.ThresholdAmount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetThresholdAmount() {
+ return isSetField(834);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionMaintenanceRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionMaintenanceRequest.java
new file mode 100644
index 000000000..36d36d242
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionMaintenanceRequest.java
@@ -0,0 +1,4214 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class PositionMaintenanceRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AL";
+
+
+ public PositionMaintenanceRequest() {
+
+ super(new int[] {710, 709, 712, 713, 714, 715, 716, 717, 453, 1, 660, 581, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 555, 711, 386, 60, 702, 718, 719, 720, 834, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public PositionMaintenanceRequest(quickfix.field.PosReqID posReqID, quickfix.field.PosTransType posTransType, quickfix.field.PosMaintAction posMaintAction, quickfix.field.ClearingBusinessDate clearingBusinessDate, quickfix.field.Account account, quickfix.field.AccountType accountType, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(posReqID);
+ setField(posTransType);
+ setField(posMaintAction);
+ setField(clearingBusinessDate);
+ setField(account);
+ setField(accountType);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.PosReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqID get(quickfix.field.PosReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqID getPosReqID() throws FieldNotFound {
+ return get(new quickfix.field.PosReqID());
+ }
+
+ public boolean isSet(quickfix.field.PosReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqID() {
+ return isSetField(710);
+ }
+
+ public void set(quickfix.field.PosTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosTransType get(quickfix.field.PosTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosTransType getPosTransType() throws FieldNotFound {
+ return get(new quickfix.field.PosTransType());
+ }
+
+ public boolean isSet(quickfix.field.PosTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosTransType() {
+ return isSetField(709);
+ }
+
+ public void set(quickfix.field.PosMaintAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintAction get(quickfix.field.PosMaintAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintAction getPosMaintAction() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintAction());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintAction() {
+ return isSetField(712);
+ }
+
+ public void set(quickfix.field.OrigPosReqRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrigPosReqRefID get(quickfix.field.OrigPosReqRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrigPosReqRefID getOrigPosReqRefID() throws FieldNotFound {
+ return get(new quickfix.field.OrigPosReqRefID());
+ }
+
+ public boolean isSet(quickfix.field.OrigPosReqRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrigPosReqRefID() {
+ return isSetField(713);
+ }
+
+ public void set(quickfix.field.PosMaintRptRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintRptRefID get(quickfix.field.PosMaintRptRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintRptRefID getPosMaintRptRefID() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintRptRefID());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintRptRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintRptRefID() {
+ return isSetField(714);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.PositionQty component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionQty get(quickfix.fix44.component.PositionQty component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionQty getPositionQty() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionQty());
+ }
+
+ public void set(quickfix.field.NoPositions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPositions get(quickfix.field.NoPositions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPositions getNoPositions() throws FieldNotFound {
+ return get(new quickfix.field.NoPositions());
+ }
+
+ public boolean isSet(quickfix.field.NoPositions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPositions() {
+ return isSetField(702);
+ }
+
+ public static class NoPositions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {703, 704, 705, 706, 539, 0};
+
+ public NoPositions() {
+ super(702, 703, ORDER);
+ }
+
+ public void set(quickfix.field.PosType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosType get(quickfix.field.PosType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosType getPosType() throws FieldNotFound {
+ return get(new quickfix.field.PosType());
+ }
+
+ public boolean isSet(quickfix.field.PosType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosType() {
+ return isSetField(703);
+ }
+
+ public void set(quickfix.field.LongQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LongQty get(quickfix.field.LongQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LongQty getLongQty() throws FieldNotFound {
+ return get(new quickfix.field.LongQty());
+ }
+
+ public boolean isSet(quickfix.field.LongQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLongQty() {
+ return isSetField(704);
+ }
+
+ public void set(quickfix.field.ShortQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.ShortQty get(quickfix.field.ShortQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ShortQty getShortQty() throws FieldNotFound {
+ return get(new quickfix.field.ShortQty());
+ }
+
+ public boolean isSet(quickfix.field.ShortQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShortQty() {
+ return isSetField(705);
+ }
+
+ public void set(quickfix.field.PosQtyStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosQtyStatus get(quickfix.field.PosQtyStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosQtyStatus getPosQtyStatus() throws FieldNotFound {
+ return get(new quickfix.field.PosQtyStatus());
+ }
+
+ public boolean isSet(quickfix.field.PosQtyStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosQtyStatus() {
+ return isSetField(706);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AdjustmentType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AdjustmentType get(quickfix.field.AdjustmentType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AdjustmentType getAdjustmentType() throws FieldNotFound {
+ return get(new quickfix.field.AdjustmentType());
+ }
+
+ public boolean isSet(quickfix.field.AdjustmentType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdjustmentType() {
+ return isSetField(718);
+ }
+
+ public void set(quickfix.field.ContraryInstructionIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContraryInstructionIndicator get(quickfix.field.ContraryInstructionIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContraryInstructionIndicator getContraryInstructionIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ContraryInstructionIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ContraryInstructionIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContraryInstructionIndicator() {
+ return isSetField(719);
+ }
+
+ public void set(quickfix.field.PriorSpreadIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriorSpreadIndicator get(quickfix.field.PriorSpreadIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriorSpreadIndicator getPriorSpreadIndicator() throws FieldNotFound {
+ return get(new quickfix.field.PriorSpreadIndicator());
+ }
+
+ public boolean isSet(quickfix.field.PriorSpreadIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriorSpreadIndicator() {
+ return isSetField(720);
+ }
+
+ public void set(quickfix.field.ThresholdAmount value) {
+ setField(value);
+ }
+
+ public quickfix.field.ThresholdAmount get(quickfix.field.ThresholdAmount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ThresholdAmount getThresholdAmount() throws FieldNotFound {
+ return get(new quickfix.field.ThresholdAmount());
+ }
+
+ public boolean isSet(quickfix.field.ThresholdAmount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetThresholdAmount() {
+ return isSetField(834);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionReport.java
new file mode 100644
index 000000000..cb1e25ceb
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/PositionReport.java
@@ -0,0 +1,4312 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class PositionReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AP";
+
+
+ public PositionReport() {
+
+ super(new int[] {721, 710, 724, 263, 727, 325, 728, 715, 716, 717, 453, 1, 660, 581, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 730, 731, 734, 555, 711, 702, 753, 506, 743, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public PositionReport(quickfix.field.PosMaintRptID posMaintRptID, quickfix.field.PosReqResult posReqResult, quickfix.field.ClearingBusinessDate clearingBusinessDate, quickfix.field.Account account, quickfix.field.AccountType accountType, quickfix.field.SettlPrice settlPrice, quickfix.field.SettlPriceType settlPriceType, quickfix.field.PriorSettlPrice priorSettlPrice) {
+ this();
+ setField(posMaintRptID);
+ setField(posReqResult);
+ setField(clearingBusinessDate);
+ setField(account);
+ setField(accountType);
+ setField(settlPrice);
+ setField(settlPriceType);
+ setField(priorSettlPrice);
+ }
+
+ public void set(quickfix.field.PosMaintRptID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintRptID get(quickfix.field.PosMaintRptID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintRptID getPosMaintRptID() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintRptID());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintRptID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintRptID() {
+ return isSetField(721);
+ }
+
+ public void set(quickfix.field.PosReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqID get(quickfix.field.PosReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqID getPosReqID() throws FieldNotFound {
+ return get(new quickfix.field.PosReqID());
+ }
+
+ public boolean isSet(quickfix.field.PosReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqID() {
+ return isSetField(710);
+ }
+
+ public void set(quickfix.field.PosReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqType get(quickfix.field.PosReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqType getPosReqType() throws FieldNotFound {
+ return get(new quickfix.field.PosReqType());
+ }
+
+ public boolean isSet(quickfix.field.PosReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqType() {
+ return isSetField(724);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TotalNumPosReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNumPosReports get(quickfix.field.TotalNumPosReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNumPosReports getTotalNumPosReports() throws FieldNotFound {
+ return get(new quickfix.field.TotalNumPosReports());
+ }
+
+ public boolean isSet(quickfix.field.TotalNumPosReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNumPosReports() {
+ return isSetField(727);
+ }
+
+ public void set(quickfix.field.UnsolicitedIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnsolicitedIndicator get(quickfix.field.UnsolicitedIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnsolicitedIndicator getUnsolicitedIndicator() throws FieldNotFound {
+ return get(new quickfix.field.UnsolicitedIndicator());
+ }
+
+ public boolean isSet(quickfix.field.UnsolicitedIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnsolicitedIndicator() {
+ return isSetField(325);
+ }
+
+ public void set(quickfix.field.PosReqResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqResult get(quickfix.field.PosReqResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqResult getPosReqResult() throws FieldNotFound {
+ return get(new quickfix.field.PosReqResult());
+ }
+
+ public boolean isSet(quickfix.field.PosReqResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqResult() {
+ return isSetField(728);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.SettlPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPrice get(quickfix.field.SettlPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPrice getSettlPrice() throws FieldNotFound {
+ return get(new quickfix.field.SettlPrice());
+ }
+
+ public boolean isSet(quickfix.field.SettlPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPrice() {
+ return isSetField(730);
+ }
+
+ public void set(quickfix.field.SettlPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPriceType get(quickfix.field.SettlPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPriceType getSettlPriceType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPriceType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPriceType() {
+ return isSetField(731);
+ }
+
+ public void set(quickfix.field.PriorSettlPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriorSettlPrice get(quickfix.field.PriorSettlPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriorSettlPrice getPriorSettlPrice() throws FieldNotFound {
+ return get(new quickfix.field.PriorSettlPrice());
+ }
+
+ public boolean isSet(quickfix.field.PriorSettlPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriorSettlPrice() {
+ return isSetField(734);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 732, 733, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingSettlPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSettlPrice get(quickfix.field.UnderlyingSettlPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSettlPrice getUnderlyingSettlPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSettlPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSettlPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSettlPrice() {
+ return isSetField(732);
+ }
+
+ public void set(quickfix.field.UnderlyingSettlPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSettlPriceType get(quickfix.field.UnderlyingSettlPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSettlPriceType getUnderlyingSettlPriceType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSettlPriceType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSettlPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSettlPriceType() {
+ return isSetField(733);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.PositionQty component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionQty get(quickfix.fix44.component.PositionQty component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionQty getPositionQty() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionQty());
+ }
+
+ public void set(quickfix.field.NoPositions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPositions get(quickfix.field.NoPositions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPositions getNoPositions() throws FieldNotFound {
+ return get(new quickfix.field.NoPositions());
+ }
+
+ public boolean isSet(quickfix.field.NoPositions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPositions() {
+ return isSetField(702);
+ }
+
+ public static class NoPositions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {703, 704, 705, 706, 539, 0};
+
+ public NoPositions() {
+ super(702, 703, ORDER);
+ }
+
+ public void set(quickfix.field.PosType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosType get(quickfix.field.PosType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosType getPosType() throws FieldNotFound {
+ return get(new quickfix.field.PosType());
+ }
+
+ public boolean isSet(quickfix.field.PosType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosType() {
+ return isSetField(703);
+ }
+
+ public void set(quickfix.field.LongQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LongQty get(quickfix.field.LongQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LongQty getLongQty() throws FieldNotFound {
+ return get(new quickfix.field.LongQty());
+ }
+
+ public boolean isSet(quickfix.field.LongQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLongQty() {
+ return isSetField(704);
+ }
+
+ public void set(quickfix.field.ShortQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.ShortQty get(quickfix.field.ShortQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ShortQty getShortQty() throws FieldNotFound {
+ return get(new quickfix.field.ShortQty());
+ }
+
+ public boolean isSet(quickfix.field.ShortQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShortQty() {
+ return isSetField(705);
+ }
+
+ public void set(quickfix.field.PosQtyStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosQtyStatus get(quickfix.field.PosQtyStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosQtyStatus getPosQtyStatus() throws FieldNotFound {
+ return get(new quickfix.field.PosQtyStatus());
+ }
+
+ public boolean isSet(quickfix.field.PosQtyStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosQtyStatus() {
+ return isSetField(706);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.PositionAmountData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionAmountData get(quickfix.fix44.component.PositionAmountData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionAmountData getPositionAmountData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionAmountData());
+ }
+
+ public void set(quickfix.field.NoPosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPosAmt get(quickfix.field.NoPosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPosAmt getNoPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.NoPosAmt());
+ }
+
+ public boolean isSet(quickfix.field.NoPosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPosAmt() {
+ return isSetField(753);
+ }
+
+ public static class NoPosAmt extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {707, 708, 0};
+
+ public NoPosAmt() {
+ super(753, 707, ORDER);
+ }
+
+ public void set(quickfix.field.PosAmtType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmtType get(quickfix.field.PosAmtType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmtType getPosAmtType() throws FieldNotFound {
+ return get(new quickfix.field.PosAmtType());
+ }
+
+ public boolean isSet(quickfix.field.PosAmtType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmtType() {
+ return isSetField(707);
+ }
+
+ public void set(quickfix.field.PosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmt get(quickfix.field.PosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmt getPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.PosAmt());
+ }
+
+ public boolean isSet(quickfix.field.PosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmt() {
+ return isSetField(708);
+ }
+
+ }
+
+ public void set(quickfix.field.RegistStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistStatus get(quickfix.field.RegistStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistStatus getRegistStatus() throws FieldNotFound {
+ return get(new quickfix.field.RegistStatus());
+ }
+
+ public boolean isSet(quickfix.field.RegistStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistStatus() {
+ return isSetField(506);
+ }
+
+ public void set(quickfix.field.DeliveryDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryDate get(quickfix.field.DeliveryDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryDate getDeliveryDate() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryDate());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryDate() {
+ return isSetField(743);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Quote.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Quote.java
new file mode 100644
index 000000000..0df73363d
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Quote.java
@@ -0,0 +1,5746 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class Quote extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "S";
+
+
+ public Quote() {
+
+ super(new int[] {131, 117, 693, 537, 735, 301, 453, 336, 625, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 38, 152, 516, 468, 469, 63, 64, 193, 192, 15, 232, 1, 660, 581, 555, 132, 133, 645, 646, 647, 134, 648, 135, 62, 188, 190, 189, 191, 631, 632, 633, 634, 60, 40, 642, 643, 656, 657, 156, 13, 12, 582, 100, 528, 423, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Quote(quickfix.field.QuoteID quoteID) {
+ this();
+ setField(quoteID);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteRespID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRespID get(quickfix.field.QuoteRespID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRespID getQuoteRespID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRespID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRespID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRespID() {
+ return isSetField(693);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.field.NoQuoteQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteQualifiers get(quickfix.field.NoQuoteQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteQualifiers getNoQuoteQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteQualifiers() {
+ return isSetField(735);
+ }
+
+ public static class NoQuoteQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {695, 0};
+
+ public NoQuoteQualifiers() {
+ super(735, 695, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteQualifier get(quickfix.field.QuoteQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteQualifier getQuoteQualifier() throws FieldNotFound {
+ return get(new quickfix.field.QuoteQualifier());
+ }
+
+ public boolean isSet(quickfix.field.QuoteQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteQualifier() {
+ return isSetField(695);
+ }
+
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 587, 588, 683, 539, 686, 681, 684, 676, 677, 678, 679, 680, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPriceType get(quickfix.field.LegPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPriceType getLegPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPriceType() {
+ return isSetField(686);
+ }
+
+ public void set(quickfix.field.LegBidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBidPx get(quickfix.field.LegBidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBidPx getLegBidPx() throws FieldNotFound {
+ return get(new quickfix.field.LegBidPx());
+ }
+
+ public boolean isSet(quickfix.field.LegBidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBidPx() {
+ return isSetField(681);
+ }
+
+ public void set(quickfix.field.LegOfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOfferPx get(quickfix.field.LegOfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOfferPx getLegOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.LegOfferPx());
+ }
+
+ public boolean isSet(quickfix.field.LegOfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOfferPx() {
+ return isSetField(684);
+ }
+
+ public void set(quickfix.fix44.component.LegBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData get(quickfix.fix44.component.LegBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData getLegBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency get(quickfix.field.LegBenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency getLegBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveCurrency() {
+ return isSetField(676);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveName get(quickfix.field.LegBenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveName getLegBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveName() {
+ return isSetField(677);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint get(quickfix.field.LegBenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint getLegBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurvePoint() {
+ return isSetField(678);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPrice get(quickfix.field.LegBenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPrice getLegBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPrice() {
+ return isSetField(679);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPriceType get(quickfix.field.LegBenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPriceType getLegBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPriceType() {
+ return isSetField(680);
+ }
+
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.MktBidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MktBidPx get(quickfix.field.MktBidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MktBidPx getMktBidPx() throws FieldNotFound {
+ return get(new quickfix.field.MktBidPx());
+ }
+
+ public boolean isSet(quickfix.field.MktBidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMktBidPx() {
+ return isSetField(645);
+ }
+
+ public void set(quickfix.field.MktOfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MktOfferPx get(quickfix.field.MktOfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MktOfferPx getMktOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.MktOfferPx());
+ }
+
+ public boolean isSet(quickfix.field.MktOfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMktOfferPx() {
+ return isSetField(646);
+ }
+
+ public void set(quickfix.field.MinBidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinBidSize get(quickfix.field.MinBidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinBidSize getMinBidSize() throws FieldNotFound {
+ return get(new quickfix.field.MinBidSize());
+ }
+
+ public boolean isSet(quickfix.field.MinBidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinBidSize() {
+ return isSetField(647);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.MinOfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinOfferSize get(quickfix.field.MinOfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinOfferSize getMinOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.MinOfferSize());
+ }
+
+ public boolean isSet(quickfix.field.MinOfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinOfferSize() {
+ return isSetField(648);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.MidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidPx get(quickfix.field.MidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidPx getMidPx() throws FieldNotFound {
+ return get(new quickfix.field.MidPx());
+ }
+
+ public boolean isSet(quickfix.field.MidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidPx() {
+ return isSetField(631);
+ }
+
+ public void set(quickfix.field.BidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidYield get(quickfix.field.BidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidYield getBidYield() throws FieldNotFound {
+ return get(new quickfix.field.BidYield());
+ }
+
+ public boolean isSet(quickfix.field.BidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidYield() {
+ return isSetField(632);
+ }
+
+ public void set(quickfix.field.MidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidYield get(quickfix.field.MidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidYield getMidYield() throws FieldNotFound {
+ return get(new quickfix.field.MidYield());
+ }
+
+ public boolean isSet(quickfix.field.MidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidYield() {
+ return isSetField(633);
+ }
+
+ public void set(quickfix.field.OfferYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferYield get(quickfix.field.OfferYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferYield getOfferYield() throws FieldNotFound {
+ return get(new quickfix.field.OfferYield());
+ }
+
+ public boolean isSet(quickfix.field.OfferYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferYield() {
+ return isSetField(634);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.BidForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints2 get(quickfix.field.BidForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints2 getBidForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints2() {
+ return isSetField(642);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints2 get(quickfix.field.OfferForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints2 getOfferForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints2() {
+ return isSetField(643);
+ }
+
+ public void set(quickfix.field.SettlCurrBidFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrBidFxRate get(quickfix.field.SettlCurrBidFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrBidFxRate getSettlCurrBidFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrBidFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrBidFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrBidFxRate() {
+ return isSetField(656);
+ }
+
+ public void set(quickfix.field.SettlCurrOfferFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrOfferFxRate get(quickfix.field.SettlCurrOfferFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrOfferFxRate getSettlCurrOfferFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrOfferFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrOfferFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrOfferFxRate() {
+ return isSetField(657);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteCancel.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteCancel.java
new file mode 100644
index 000000000..624d7cdd4
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteCancel.java
@@ -0,0 +1,3827 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteCancel extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "Z";
+
+
+ public QuoteCancel() {
+
+ super(new int[] {131, 117, 298, 301, 453, 1, 660, 581, 336, 625, 295, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteCancel(quickfix.field.QuoteID quoteID, quickfix.field.QuoteCancelType quoteCancelType) {
+ this();
+ setField(quoteID);
+ setField(quoteCancelType);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteCancelType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteCancelType get(quickfix.field.QuoteCancelType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteCancelType getQuoteCancelType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteCancelType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteCancelType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteCancelType() {
+ return isSetField(298);
+ }
+
+ public void set(quickfix.field.QuoteResponseLevel value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteResponseLevel get(quickfix.field.QuoteResponseLevel value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteResponseLevel getQuoteResponseLevel() throws FieldNotFound {
+ return get(new quickfix.field.QuoteResponseLevel());
+ }
+
+ public boolean isSet(quickfix.field.QuoteResponseLevel field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteResponseLevel() {
+ return isSetField(301);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.NoQuoteEntries value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteEntries get(quickfix.field.NoQuoteEntries value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteEntries getNoQuoteEntries() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteEntries());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteEntries field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteEntries() {
+ return isSetField(295);
+ }
+
+ public static class NoQuoteEntries extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 0};
+
+ public NoQuoteEntries() {
+ super(295, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteRequest.java
new file mode 100644
index 000000000..ec8abb6e1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteRequest.java
@@ -0,0 +1,5337 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "R";
+
+
+ public QuoteRequest() {
+
+ super(new int[] {131, 644, 11, 528, 146, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteRequest(quickfix.field.QuoteReqID quoteReqID) {
+ this();
+ setField(quoteReqID);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.RFQReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RFQReqID get(quickfix.field.RFQReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RFQReqID getRFQReqID() throws FieldNotFound {
+ return get(new quickfix.field.RFQReqID());
+ }
+
+ public boolean isSet(quickfix.field.RFQReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRFQReqID() {
+ return isSetField(644);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 140, 303, 537, 336, 625, 229, 54, 854, 38, 152, 516, 468, 469, 63, 64, 193, 192, 15, 232, 1, 660, 581, 555, 735, 692, 40, 62, 126, 60, 218, 220, 221, 222, 662, 663, 699, 761, 423, 44, 640, 235, 236, 701, 696, 697, 698, 453, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.QuoteRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRequestType get(quickfix.field.QuoteRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRequestType getQuoteRequestType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRequestType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRequestType() {
+ return isSetField(303);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 587, 588, 683, 539, 676, 677, 678, 679, 680, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.LegBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData get(quickfix.fix44.component.LegBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData getLegBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency get(quickfix.field.LegBenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency getLegBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveCurrency() {
+ return isSetField(676);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveName get(quickfix.field.LegBenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveName getLegBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveName() {
+ return isSetField(677);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint get(quickfix.field.LegBenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint getLegBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurvePoint() {
+ return isSetField(678);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPrice get(quickfix.field.LegBenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPrice getLegBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPrice() {
+ return isSetField(679);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPriceType get(quickfix.field.LegBenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPriceType getLegBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPriceType() {
+ return isSetField(680);
+ }
+
+ }
+
+ public void set(quickfix.field.NoQuoteQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteQualifiers get(quickfix.field.NoQuoteQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteQualifiers getNoQuoteQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteQualifiers() {
+ return isSetField(735);
+ }
+
+ public static class NoQuoteQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {695, 0};
+
+ public NoQuoteQualifiers() {
+ super(735, 695, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteQualifier get(quickfix.field.QuoteQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteQualifier getQuoteQualifier() throws FieldNotFound {
+ return get(new quickfix.field.QuoteQualifier());
+ }
+
+ public boolean isSet(quickfix.field.QuoteQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteQualifier() {
+ return isSetField(695);
+ }
+
+ }
+
+ public void set(quickfix.field.QuotePriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuotePriceType get(quickfix.field.QuotePriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuotePriceType getQuotePriceType() throws FieldNotFound {
+ return get(new quickfix.field.QuotePriceType());
+ }
+
+ public boolean isSet(quickfix.field.QuotePriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuotePriceType() {
+ return isSetField(692);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Price2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price2 get(quickfix.field.Price2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price2 getPrice2() throws FieldNotFound {
+ return get(new quickfix.field.Price2());
+ }
+
+ public boolean isSet(quickfix.field.Price2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice2() {
+ return isSetField(640);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteRequestReject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteRequestReject.java
new file mode 100644
index 000000000..f38a2b742
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteRequestReject.java
@@ -0,0 +1,5296 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteRequestReject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AG";
+
+
+ public QuoteRequestReject() {
+
+ super(new int[] {131, 644, 658, 146, 735, 692, 40, 126, 60, 218, 220, 221, 222, 662, 663, 699, 761, 423, 44, 640, 235, 236, 701, 696, 697, 698, 453, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteRequestReject(quickfix.field.QuoteReqID quoteReqID, quickfix.field.QuoteRequestRejectReason quoteRequestRejectReason) {
+ this();
+ setField(quoteReqID);
+ setField(quoteRequestRejectReason);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.RFQReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RFQReqID get(quickfix.field.RFQReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RFQReqID getRFQReqID() throws FieldNotFound {
+ return get(new quickfix.field.RFQReqID());
+ }
+
+ public boolean isSet(quickfix.field.RFQReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRFQReqID() {
+ return isSetField(644);
+ }
+
+ public void set(quickfix.field.QuoteRequestRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRequestRejectReason get(quickfix.field.QuoteRequestRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRequestRejectReason getQuoteRequestRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRequestRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRequestRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRequestRejectReason() {
+ return isSetField(658);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 140, 303, 537, 336, 625, 229, 54, 854, 38, 152, 516, 468, 469, 63, 64, 193, 192, 15, 232, 1, 660, 581, 555, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.QuoteRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRequestType get(quickfix.field.QuoteRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRequestType getQuoteRequestType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRequestType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRequestType() {
+ return isSetField(303);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.TradeOriginationDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeOriginationDate get(quickfix.field.TradeOriginationDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeOriginationDate getTradeOriginationDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeOriginationDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeOriginationDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeOriginationDate() {
+ return isSetField(229);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 587, 588, 683, 539, 676, 677, 678, 679, 680, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.LegBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData get(quickfix.fix44.component.LegBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData getLegBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency get(quickfix.field.LegBenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency getLegBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveCurrency() {
+ return isSetField(676);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveName get(quickfix.field.LegBenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveName getLegBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveName() {
+ return isSetField(677);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint get(quickfix.field.LegBenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint getLegBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurvePoint() {
+ return isSetField(678);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPrice get(quickfix.field.LegBenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPrice getLegBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPrice() {
+ return isSetField(679);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPriceType get(quickfix.field.LegBenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPriceType getLegBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPriceType() {
+ return isSetField(680);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoQuoteQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteQualifiers get(quickfix.field.NoQuoteQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteQualifiers getNoQuoteQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteQualifiers() {
+ return isSetField(735);
+ }
+
+ public static class NoQuoteQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {695, 0};
+
+ public NoQuoteQualifiers() {
+ super(735, 695, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteQualifier get(quickfix.field.QuoteQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteQualifier getQuoteQualifier() throws FieldNotFound {
+ return get(new quickfix.field.QuoteQualifier());
+ }
+
+ public boolean isSet(quickfix.field.QuoteQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteQualifier() {
+ return isSetField(695);
+ }
+
+ }
+
+ public void set(quickfix.field.QuotePriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuotePriceType get(quickfix.field.QuotePriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuotePriceType getQuotePriceType() throws FieldNotFound {
+ return get(new quickfix.field.QuotePriceType());
+ }
+
+ public boolean isSet(quickfix.field.QuotePriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuotePriceType() {
+ return isSetField(692);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.Price2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price2 get(quickfix.field.Price2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price2 getPrice2() throws FieldNotFound {
+ return get(new quickfix.field.Price2());
+ }
+
+ public boolean isSet(quickfix.field.Price2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice2() {
+ return isSetField(640);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteResponse.java
new file mode 100644
index 000000000..d0c3fbb89
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteResponse.java
@@ -0,0 +1,5789 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteResponse extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AJ";
+
+
+ public QuoteResponse() {
+
+ super(new int[] {693, 117, 694, 11, 528, 23, 537, 735, 453, 336, 625, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 38, 152, 516, 468, 469, 63, 64, 193, 192, 15, 232, 1, 660, 581, 555, 132, 133, 645, 646, 647, 134, 648, 135, 62, 188, 190, 189, 191, 631, 632, 633, 634, 60, 40, 642, 643, 656, 657, 156, 12, 13, 582, 100, 58, 354, 355, 44, 423, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteResponse(quickfix.field.QuoteRespID quoteRespID, quickfix.field.QuoteRespType quoteRespType) {
+ this();
+ setField(quoteRespID);
+ setField(quoteRespType);
+ }
+
+ public void set(quickfix.field.QuoteRespID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRespID get(quickfix.field.QuoteRespID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRespID getQuoteRespID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRespID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRespID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRespID() {
+ return isSetField(693);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteRespType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRespType get(quickfix.field.QuoteRespType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRespType getQuoteRespType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRespType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRespType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRespType() {
+ return isSetField(694);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.IOIID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IOIID get(quickfix.field.IOIID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IOIID getIOIID() throws FieldNotFound {
+ return get(new quickfix.field.IOIID());
+ }
+
+ public boolean isSet(quickfix.field.IOIID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIOIID() {
+ return isSetField(23);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.field.NoQuoteQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteQualifiers get(quickfix.field.NoQuoteQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteQualifiers getNoQuoteQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteQualifiers() {
+ return isSetField(735);
+ }
+
+ public static class NoQuoteQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {695, 0};
+
+ public NoQuoteQualifiers() {
+ super(735, 695, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteQualifier get(quickfix.field.QuoteQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteQualifier getQuoteQualifier() throws FieldNotFound {
+ return get(new quickfix.field.QuoteQualifier());
+ }
+
+ public boolean isSet(quickfix.field.QuoteQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteQualifier() {
+ return isSetField(695);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 587, 588, 683, 539, 686, 681, 684, 676, 677, 678, 679, 680, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPriceType get(quickfix.field.LegPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPriceType getLegPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPriceType() {
+ return isSetField(686);
+ }
+
+ public void set(quickfix.field.LegBidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBidPx get(quickfix.field.LegBidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBidPx getLegBidPx() throws FieldNotFound {
+ return get(new quickfix.field.LegBidPx());
+ }
+
+ public boolean isSet(quickfix.field.LegBidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBidPx() {
+ return isSetField(681);
+ }
+
+ public void set(quickfix.field.LegOfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOfferPx get(quickfix.field.LegOfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOfferPx getLegOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.LegOfferPx());
+ }
+
+ public boolean isSet(quickfix.field.LegOfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOfferPx() {
+ return isSetField(684);
+ }
+
+ public void set(quickfix.fix44.component.LegBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData get(quickfix.fix44.component.LegBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData getLegBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency get(quickfix.field.LegBenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency getLegBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveCurrency() {
+ return isSetField(676);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveName get(quickfix.field.LegBenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveName getLegBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveName() {
+ return isSetField(677);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint get(quickfix.field.LegBenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint getLegBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurvePoint() {
+ return isSetField(678);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPrice get(quickfix.field.LegBenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPrice getLegBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPrice() {
+ return isSetField(679);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPriceType get(quickfix.field.LegBenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPriceType getLegBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPriceType() {
+ return isSetField(680);
+ }
+
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.MktBidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MktBidPx get(quickfix.field.MktBidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MktBidPx getMktBidPx() throws FieldNotFound {
+ return get(new quickfix.field.MktBidPx());
+ }
+
+ public boolean isSet(quickfix.field.MktBidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMktBidPx() {
+ return isSetField(645);
+ }
+
+ public void set(quickfix.field.MktOfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MktOfferPx get(quickfix.field.MktOfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MktOfferPx getMktOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.MktOfferPx());
+ }
+
+ public boolean isSet(quickfix.field.MktOfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMktOfferPx() {
+ return isSetField(646);
+ }
+
+ public void set(quickfix.field.MinBidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinBidSize get(quickfix.field.MinBidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinBidSize getMinBidSize() throws FieldNotFound {
+ return get(new quickfix.field.MinBidSize());
+ }
+
+ public boolean isSet(quickfix.field.MinBidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinBidSize() {
+ return isSetField(647);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.MinOfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinOfferSize get(quickfix.field.MinOfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinOfferSize getMinOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.MinOfferSize());
+ }
+
+ public boolean isSet(quickfix.field.MinOfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinOfferSize() {
+ return isSetField(648);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.MidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidPx get(quickfix.field.MidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidPx getMidPx() throws FieldNotFound {
+ return get(new quickfix.field.MidPx());
+ }
+
+ public boolean isSet(quickfix.field.MidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidPx() {
+ return isSetField(631);
+ }
+
+ public void set(quickfix.field.BidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidYield get(quickfix.field.BidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidYield getBidYield() throws FieldNotFound {
+ return get(new quickfix.field.BidYield());
+ }
+
+ public boolean isSet(quickfix.field.BidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidYield() {
+ return isSetField(632);
+ }
+
+ public void set(quickfix.field.MidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidYield get(quickfix.field.MidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidYield getMidYield() throws FieldNotFound {
+ return get(new quickfix.field.MidYield());
+ }
+
+ public boolean isSet(quickfix.field.MidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidYield() {
+ return isSetField(633);
+ }
+
+ public void set(quickfix.field.OfferYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferYield get(quickfix.field.OfferYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferYield getOfferYield() throws FieldNotFound {
+ return get(new quickfix.field.OfferYield());
+ }
+
+ public boolean isSet(quickfix.field.OfferYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferYield() {
+ return isSetField(634);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.BidForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints2 get(quickfix.field.BidForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints2 getBidForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints2() {
+ return isSetField(642);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints2 get(quickfix.field.OfferForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints2 getOfferForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints2() {
+ return isSetField(643);
+ }
+
+ public void set(quickfix.field.SettlCurrBidFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrBidFxRate get(quickfix.field.SettlCurrBidFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrBidFxRate getSettlCurrBidFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrBidFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrBidFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrBidFxRate() {
+ return isSetField(656);
+ }
+
+ public void set(quickfix.field.SettlCurrOfferFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrOfferFxRate get(quickfix.field.SettlCurrOfferFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrOfferFxRate getSettlCurrOfferFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrOfferFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrOfferFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrOfferFxRate() {
+ return isSetField(657);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteStatusReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteStatusReport.java
new file mode 100644
index 000000000..94af4138b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteStatusReport.java
@@ -0,0 +1,5607 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteStatusReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AI";
+
+
+ public QuoteStatusReport() {
+
+ super(new int[] {649, 131, 117, 693, 537, 453, 336, 625, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 54, 38, 152, 516, 468, 469, 63, 64, 193, 192, 15, 232, 1, 660, 581, 555, 735, 126, 44, 423, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 132, 133, 645, 646, 647, 134, 648, 135, 62, 188, 190, 189, 191, 631, 632, 633, 634, 60, 40, 642, 643, 656, 657, 156, 13, 12, 582, 100, 297, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public QuoteStatusReport(quickfix.field.QuoteID quoteID) {
+ this();
+ setField(quoteID);
+ }
+
+ public void set(quickfix.field.QuoteStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteStatusReqID get(quickfix.field.QuoteStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteStatusReqID getQuoteStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteStatusReqID() {
+ return isSetField(649);
+ }
+
+ public void set(quickfix.field.QuoteReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteReqID get(quickfix.field.QuoteReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteReqID getQuoteReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteReqID() {
+ return isSetField(131);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.field.QuoteRespID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRespID get(quickfix.field.QuoteRespID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRespID getQuoteRespID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRespID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRespID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRespID() {
+ return isSetField(693);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.SettlDate2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate2 get(quickfix.field.SettlDate2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate2 getSettlDate2() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate2());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate2() {
+ return isSetField(193);
+ }
+
+ public void set(quickfix.field.OrderQty2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty2 get(quickfix.field.OrderQty2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty2 getOrderQty2() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty2());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty2() {
+ return isSetField(192);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 587, 588, 683, 539, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoQuoteQualifiers value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoQuoteQualifiers get(quickfix.field.NoQuoteQualifiers value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoQuoteQualifiers getNoQuoteQualifiers() throws FieldNotFound {
+ return get(new quickfix.field.NoQuoteQualifiers());
+ }
+
+ public boolean isSet(quickfix.field.NoQuoteQualifiers field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoQuoteQualifiers() {
+ return isSetField(735);
+ }
+
+ public static class NoQuoteQualifiers extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {695, 0};
+
+ public NoQuoteQualifiers() {
+ super(735, 695, ORDER);
+ }
+
+ public void set(quickfix.field.QuoteQualifier value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteQualifier get(quickfix.field.QuoteQualifier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteQualifier getQuoteQualifier() throws FieldNotFound {
+ return get(new quickfix.field.QuoteQualifier());
+ }
+
+ public boolean isSet(quickfix.field.QuoteQualifier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteQualifier() {
+ return isSetField(695);
+ }
+
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.Price value) {
+ setField(value);
+ }
+
+ public quickfix.field.Price get(quickfix.field.Price value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Price getPrice() throws FieldNotFound {
+ return get(new quickfix.field.Price());
+ }
+
+ public boolean isSet(quickfix.field.Price field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrice() {
+ return isSetField(44);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.BidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidPx get(quickfix.field.BidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidPx getBidPx() throws FieldNotFound {
+ return get(new quickfix.field.BidPx());
+ }
+
+ public boolean isSet(quickfix.field.BidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidPx() {
+ return isSetField(132);
+ }
+
+ public void set(quickfix.field.OfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferPx get(quickfix.field.OfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferPx getOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.OfferPx());
+ }
+
+ public boolean isSet(quickfix.field.OfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferPx() {
+ return isSetField(133);
+ }
+
+ public void set(quickfix.field.MktBidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MktBidPx get(quickfix.field.MktBidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MktBidPx getMktBidPx() throws FieldNotFound {
+ return get(new quickfix.field.MktBidPx());
+ }
+
+ public boolean isSet(quickfix.field.MktBidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMktBidPx() {
+ return isSetField(645);
+ }
+
+ public void set(quickfix.field.MktOfferPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MktOfferPx get(quickfix.field.MktOfferPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MktOfferPx getMktOfferPx() throws FieldNotFound {
+ return get(new quickfix.field.MktOfferPx());
+ }
+
+ public boolean isSet(quickfix.field.MktOfferPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMktOfferPx() {
+ return isSetField(646);
+ }
+
+ public void set(quickfix.field.MinBidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinBidSize get(quickfix.field.MinBidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinBidSize getMinBidSize() throws FieldNotFound {
+ return get(new quickfix.field.MinBidSize());
+ }
+
+ public boolean isSet(quickfix.field.MinBidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinBidSize() {
+ return isSetField(647);
+ }
+
+ public void set(quickfix.field.BidSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSize get(quickfix.field.BidSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSize getBidSize() throws FieldNotFound {
+ return get(new quickfix.field.BidSize());
+ }
+
+ public boolean isSet(quickfix.field.BidSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSize() {
+ return isSetField(134);
+ }
+
+ public void set(quickfix.field.MinOfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinOfferSize get(quickfix.field.MinOfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinOfferSize getMinOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.MinOfferSize());
+ }
+
+ public boolean isSet(quickfix.field.MinOfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinOfferSize() {
+ return isSetField(648);
+ }
+
+ public void set(quickfix.field.OfferSize value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSize get(quickfix.field.OfferSize value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSize getOfferSize() throws FieldNotFound {
+ return get(new quickfix.field.OfferSize());
+ }
+
+ public boolean isSet(quickfix.field.OfferSize field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSize() {
+ return isSetField(135);
+ }
+
+ public void set(quickfix.field.ValidUntilTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ValidUntilTime get(quickfix.field.ValidUntilTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ValidUntilTime getValidUntilTime() throws FieldNotFound {
+ return get(new quickfix.field.ValidUntilTime());
+ }
+
+ public boolean isSet(quickfix.field.ValidUntilTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetValidUntilTime() {
+ return isSetField(62);
+ }
+
+ public void set(quickfix.field.BidSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidSpotRate get(quickfix.field.BidSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidSpotRate getBidSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.BidSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.BidSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidSpotRate() {
+ return isSetField(188);
+ }
+
+ public void set(quickfix.field.OfferSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferSpotRate get(quickfix.field.OfferSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferSpotRate getOfferSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.OfferSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.OfferSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferSpotRate() {
+ return isSetField(190);
+ }
+
+ public void set(quickfix.field.BidForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints get(quickfix.field.BidForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints getBidForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints() {
+ return isSetField(189);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints get(quickfix.field.OfferForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints getOfferForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints() {
+ return isSetField(191);
+ }
+
+ public void set(quickfix.field.MidPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidPx get(quickfix.field.MidPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidPx getMidPx() throws FieldNotFound {
+ return get(new quickfix.field.MidPx());
+ }
+
+ public boolean isSet(quickfix.field.MidPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidPx() {
+ return isSetField(631);
+ }
+
+ public void set(quickfix.field.BidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidYield get(quickfix.field.BidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidYield getBidYield() throws FieldNotFound {
+ return get(new quickfix.field.BidYield());
+ }
+
+ public boolean isSet(quickfix.field.BidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidYield() {
+ return isSetField(632);
+ }
+
+ public void set(quickfix.field.MidYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.MidYield get(quickfix.field.MidYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MidYield getMidYield() throws FieldNotFound {
+ return get(new quickfix.field.MidYield());
+ }
+
+ public boolean isSet(quickfix.field.MidYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMidYield() {
+ return isSetField(633);
+ }
+
+ public void set(quickfix.field.OfferYield value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferYield get(quickfix.field.OfferYield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferYield getOfferYield() throws FieldNotFound {
+ return get(new quickfix.field.OfferYield());
+ }
+
+ public boolean isSet(quickfix.field.OfferYield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferYield() {
+ return isSetField(634);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.BidForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.BidForwardPoints2 get(quickfix.field.BidForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BidForwardPoints2 getBidForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.BidForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.BidForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBidForwardPoints2() {
+ return isSetField(642);
+ }
+
+ public void set(quickfix.field.OfferForwardPoints2 value) {
+ setField(value);
+ }
+
+ public quickfix.field.OfferForwardPoints2 get(quickfix.field.OfferForwardPoints2 value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OfferForwardPoints2 getOfferForwardPoints2() throws FieldNotFound {
+ return get(new quickfix.field.OfferForwardPoints2());
+ }
+
+ public boolean isSet(quickfix.field.OfferForwardPoints2 field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOfferForwardPoints2() {
+ return isSetField(643);
+ }
+
+ public void set(quickfix.field.SettlCurrBidFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrBidFxRate get(quickfix.field.SettlCurrBidFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrBidFxRate getSettlCurrBidFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrBidFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrBidFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrBidFxRate() {
+ return isSetField(656);
+ }
+
+ public void set(quickfix.field.SettlCurrOfferFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrOfferFxRate get(quickfix.field.SettlCurrOfferFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrOfferFxRate getSettlCurrOfferFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrOfferFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrOfferFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrOfferFxRate() {
+ return isSetField(657);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.ExDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDestination get(quickfix.field.ExDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDestination getExDestination() throws FieldNotFound {
+ return get(new quickfix.field.ExDestination());
+ }
+
+ public boolean isSet(quickfix.field.ExDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDestination() {
+ return isSetField(100);
+ }
+
+ public void set(quickfix.field.QuoteStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteStatus get(quickfix.field.QuoteStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteStatus getQuoteStatus() throws FieldNotFound {
+ return get(new quickfix.field.QuoteStatus());
+ }
+
+ public boolean isSet(quickfix.field.QuoteStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteStatus() {
+ return isSetField(297);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteStatusRequest.java
new file mode 100644
index 000000000..72fa78cb5
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/QuoteStatusRequest.java
@@ -0,0 +1,3768 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class QuoteStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "a";
+
+
+ public QuoteStatusRequest() {
+
+ super(new int[] {649, 117, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 453, 1, 660, 581, 336, 625, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.QuoteStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteStatusReqID get(quickfix.field.QuoteStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteStatusReqID getQuoteStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteStatusReqID() {
+ return isSetField(649);
+ }
+
+ public void set(quickfix.field.QuoteID value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteID get(quickfix.field.QuoteID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteID getQuoteID() throws FieldNotFound {
+ return get(new quickfix.field.QuoteID());
+ }
+
+ public boolean isSet(quickfix.field.QuoteID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteID() {
+ return isSetField(117);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RFQRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RFQRequest.java
new file mode 100644
index 000000000..a29c0d027
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RFQRequest.java
@@ -0,0 +1,3400 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class RFQRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AH";
+
+
+ public RFQRequest() {
+
+ super(new int[] {644, 146, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public RFQRequest(quickfix.field.RFQReqID rFQReqID) {
+ this();
+ setField(rFQReqID);
+ }
+
+ public void set(quickfix.field.RFQReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RFQReqID get(quickfix.field.RFQReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RFQReqID getRFQReqID() throws FieldNotFound {
+ return get(new quickfix.field.RFQReqID());
+ }
+
+ public boolean isSet(quickfix.field.RFQReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRFQReqID() {
+ return isSetField(644);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 140, 303, 537, 336, 625, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.PrevClosePx value) {
+ setField(value);
+ }
+
+ public quickfix.field.PrevClosePx get(quickfix.field.PrevClosePx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PrevClosePx getPrevClosePx() throws FieldNotFound {
+ return get(new quickfix.field.PrevClosePx());
+ }
+
+ public boolean isSet(quickfix.field.PrevClosePx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPrevClosePx() {
+ return isSetField(140);
+ }
+
+ public void set(quickfix.field.QuoteRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteRequestType get(quickfix.field.QuoteRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteRequestType getQuoteRequestType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteRequestType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteRequestType() {
+ return isSetField(303);
+ }
+
+ public void set(quickfix.field.QuoteType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QuoteType get(quickfix.field.QuoteType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QuoteType getQuoteType() throws FieldNotFound {
+ return get(new quickfix.field.QuoteType());
+ }
+
+ public boolean isSet(quickfix.field.QuoteType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQuoteType() {
+ return isSetField(537);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RegistrationInstructions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RegistrationInstructions.java
new file mode 100644
index 000000000..378cc736f
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RegistrationInstructions.java
@@ -0,0 +1,960 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class RegistrationInstructions extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "o";
+
+
+ public RegistrationInstructions() {
+
+ super(new int[] {513, 514, 508, 11, 453, 1, 660, 493, 495, 517, 473, 510, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public RegistrationInstructions(quickfix.field.RegistID registID, quickfix.field.RegistTransType registTransType, quickfix.field.RegistRefID registRefID) {
+ this();
+ setField(registID);
+ setField(registTransType);
+ setField(registRefID);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.RegistTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistTransType get(quickfix.field.RegistTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistTransType getRegistTransType() throws FieldNotFound {
+ return get(new quickfix.field.RegistTransType());
+ }
+
+ public boolean isSet(quickfix.field.RegistTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistTransType() {
+ return isSetField(514);
+ }
+
+ public void set(quickfix.field.RegistRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistRefID get(quickfix.field.RegistRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistRefID getRegistRefID() throws FieldNotFound {
+ return get(new quickfix.field.RegistRefID());
+ }
+
+ public boolean isSet(quickfix.field.RegistRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistRefID() {
+ return isSetField(508);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.RegistAcctType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistAcctType get(quickfix.field.RegistAcctType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistAcctType getRegistAcctType() throws FieldNotFound {
+ return get(new quickfix.field.RegistAcctType());
+ }
+
+ public boolean isSet(quickfix.field.RegistAcctType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistAcctType() {
+ return isSetField(493);
+ }
+
+ public void set(quickfix.field.TaxAdvantageType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TaxAdvantageType get(quickfix.field.TaxAdvantageType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TaxAdvantageType getTaxAdvantageType() throws FieldNotFound {
+ return get(new quickfix.field.TaxAdvantageType());
+ }
+
+ public boolean isSet(quickfix.field.TaxAdvantageType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTaxAdvantageType() {
+ return isSetField(495);
+ }
+
+ public void set(quickfix.field.OwnershipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OwnershipType get(quickfix.field.OwnershipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OwnershipType getOwnershipType() throws FieldNotFound {
+ return get(new quickfix.field.OwnershipType());
+ }
+
+ public boolean isSet(quickfix.field.OwnershipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOwnershipType() {
+ return isSetField(517);
+ }
+
+ public void set(quickfix.field.NoRegistDtls value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRegistDtls get(quickfix.field.NoRegistDtls value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRegistDtls getNoRegistDtls() throws FieldNotFound {
+ return get(new quickfix.field.NoRegistDtls());
+ }
+
+ public boolean isSet(quickfix.field.NoRegistDtls field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRegistDtls() {
+ return isSetField(473);
+ }
+
+ public static class NoRegistDtls extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {509, 511, 474, 482, 539, 522, 486, 475, 0};
+
+ public NoRegistDtls() {
+ super(473, 509, ORDER);
+ }
+
+ public void set(quickfix.field.RegistDtls value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistDtls get(quickfix.field.RegistDtls value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistDtls getRegistDtls() throws FieldNotFound {
+ return get(new quickfix.field.RegistDtls());
+ }
+
+ public boolean isSet(quickfix.field.RegistDtls field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistDtls() {
+ return isSetField(509);
+ }
+
+ public void set(quickfix.field.RegistEmail value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistEmail get(quickfix.field.RegistEmail value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistEmail getRegistEmail() throws FieldNotFound {
+ return get(new quickfix.field.RegistEmail());
+ }
+
+ public boolean isSet(quickfix.field.RegistEmail field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistEmail() {
+ return isSetField(511);
+ }
+
+ public void set(quickfix.field.MailingDtls value) {
+ setField(value);
+ }
+
+ public quickfix.field.MailingDtls get(quickfix.field.MailingDtls value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MailingDtls getMailingDtls() throws FieldNotFound {
+ return get(new quickfix.field.MailingDtls());
+ }
+
+ public boolean isSet(quickfix.field.MailingDtls field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMailingDtls() {
+ return isSetField(474);
+ }
+
+ public void set(quickfix.field.MailingInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.MailingInst get(quickfix.field.MailingInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MailingInst getMailingInst() throws FieldNotFound {
+ return get(new quickfix.field.MailingInst());
+ }
+
+ public boolean isSet(quickfix.field.MailingInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMailingInst() {
+ return isSetField(482);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.OwnerType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OwnerType get(quickfix.field.OwnerType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OwnerType getOwnerType() throws FieldNotFound {
+ return get(new quickfix.field.OwnerType());
+ }
+
+ public boolean isSet(quickfix.field.OwnerType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOwnerType() {
+ return isSetField(522);
+ }
+
+ public void set(quickfix.field.DateOfBirth value) {
+ setField(value);
+ }
+
+ public quickfix.field.DateOfBirth get(quickfix.field.DateOfBirth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DateOfBirth getDateOfBirth() throws FieldNotFound {
+ return get(new quickfix.field.DateOfBirth());
+ }
+
+ public boolean isSet(quickfix.field.DateOfBirth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDateOfBirth() {
+ return isSetField(486);
+ }
+
+ public void set(quickfix.field.InvestorCountryOfResidence value) {
+ setField(value);
+ }
+
+ public quickfix.field.InvestorCountryOfResidence get(quickfix.field.InvestorCountryOfResidence value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InvestorCountryOfResidence getInvestorCountryOfResidence() throws FieldNotFound {
+ return get(new quickfix.field.InvestorCountryOfResidence());
+ }
+
+ public boolean isSet(quickfix.field.InvestorCountryOfResidence field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInvestorCountryOfResidence() {
+ return isSetField(475);
+ }
+
+ }
+
+ public void set(quickfix.field.NoDistribInsts value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDistribInsts get(quickfix.field.NoDistribInsts value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDistribInsts getNoDistribInsts() throws FieldNotFound {
+ return get(new quickfix.field.NoDistribInsts());
+ }
+
+ public boolean isSet(quickfix.field.NoDistribInsts field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDistribInsts() {
+ return isSetField(510);
+ }
+
+ public static class NoDistribInsts extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {477, 512, 478, 498, 499, 500, 501, 502, 0};
+
+ public NoDistribInsts() {
+ super(510, 477, ORDER);
+ }
+
+ public void set(quickfix.field.DistribPaymentMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.DistribPaymentMethod get(quickfix.field.DistribPaymentMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DistribPaymentMethod getDistribPaymentMethod() throws FieldNotFound {
+ return get(new quickfix.field.DistribPaymentMethod());
+ }
+
+ public boolean isSet(quickfix.field.DistribPaymentMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDistribPaymentMethod() {
+ return isSetField(477);
+ }
+
+ public void set(quickfix.field.DistribPercentage value) {
+ setField(value);
+ }
+
+ public quickfix.field.DistribPercentage get(quickfix.field.DistribPercentage value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DistribPercentage getDistribPercentage() throws FieldNotFound {
+ return get(new quickfix.field.DistribPercentage());
+ }
+
+ public boolean isSet(quickfix.field.DistribPercentage field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDistribPercentage() {
+ return isSetField(512);
+ }
+
+ public void set(quickfix.field.CashDistribCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashDistribCurr get(quickfix.field.CashDistribCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashDistribCurr getCashDistribCurr() throws FieldNotFound {
+ return get(new quickfix.field.CashDistribCurr());
+ }
+
+ public boolean isSet(quickfix.field.CashDistribCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashDistribCurr() {
+ return isSetField(478);
+ }
+
+ public void set(quickfix.field.CashDistribAgentName value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashDistribAgentName get(quickfix.field.CashDistribAgentName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashDistribAgentName getCashDistribAgentName() throws FieldNotFound {
+ return get(new quickfix.field.CashDistribAgentName());
+ }
+
+ public boolean isSet(quickfix.field.CashDistribAgentName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashDistribAgentName() {
+ return isSetField(498);
+ }
+
+ public void set(quickfix.field.CashDistribAgentCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashDistribAgentCode get(quickfix.field.CashDistribAgentCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashDistribAgentCode getCashDistribAgentCode() throws FieldNotFound {
+ return get(new quickfix.field.CashDistribAgentCode());
+ }
+
+ public boolean isSet(quickfix.field.CashDistribAgentCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashDistribAgentCode() {
+ return isSetField(499);
+ }
+
+ public void set(quickfix.field.CashDistribAgentAcctNumber value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashDistribAgentAcctNumber get(quickfix.field.CashDistribAgentAcctNumber value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashDistribAgentAcctNumber getCashDistribAgentAcctNumber() throws FieldNotFound {
+ return get(new quickfix.field.CashDistribAgentAcctNumber());
+ }
+
+ public boolean isSet(quickfix.field.CashDistribAgentAcctNumber field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashDistribAgentAcctNumber() {
+ return isSetField(500);
+ }
+
+ public void set(quickfix.field.CashDistribPayRef value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashDistribPayRef get(quickfix.field.CashDistribPayRef value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashDistribPayRef getCashDistribPayRef() throws FieldNotFound {
+ return get(new quickfix.field.CashDistribPayRef());
+ }
+
+ public boolean isSet(quickfix.field.CashDistribPayRef field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashDistribPayRef() {
+ return isSetField(501);
+ }
+
+ public void set(quickfix.field.CashDistribAgentAcctName value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashDistribAgentAcctName get(quickfix.field.CashDistribAgentAcctName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashDistribAgentAcctName getCashDistribAgentAcctName() throws FieldNotFound {
+ return get(new quickfix.field.CashDistribAgentAcctName());
+ }
+
+ public boolean isSet(quickfix.field.CashDistribAgentAcctName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashDistribAgentAcctName() {
+ return isSetField(502);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RegistrationInstructionsResponse.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RegistrationInstructionsResponse.java
new file mode 100644
index 000000000..a8571f061
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RegistrationInstructionsResponse.java
@@ -0,0 +1,400 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class RegistrationInstructionsResponse extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "p";
+
+
+ public RegistrationInstructionsResponse() {
+
+ super(new int[] {513, 514, 508, 11, 453, 1, 660, 506, 507, 496, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public RegistrationInstructionsResponse(quickfix.field.RegistID registID, quickfix.field.RegistTransType registTransType, quickfix.field.RegistRefID registRefID, quickfix.field.RegistStatus registStatus) {
+ this();
+ setField(registID);
+ setField(registTransType);
+ setField(registRefID);
+ setField(registStatus);
+ }
+
+ public void set(quickfix.field.RegistID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistID get(quickfix.field.RegistID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistID getRegistID() throws FieldNotFound {
+ return get(new quickfix.field.RegistID());
+ }
+
+ public boolean isSet(quickfix.field.RegistID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistID() {
+ return isSetField(513);
+ }
+
+ public void set(quickfix.field.RegistTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistTransType get(quickfix.field.RegistTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistTransType getRegistTransType() throws FieldNotFound {
+ return get(new quickfix.field.RegistTransType());
+ }
+
+ public boolean isSet(quickfix.field.RegistTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistTransType() {
+ return isSetField(514);
+ }
+
+ public void set(quickfix.field.RegistRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistRefID get(quickfix.field.RegistRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistRefID getRegistRefID() throws FieldNotFound {
+ return get(new quickfix.field.RegistRefID());
+ }
+
+ public boolean isSet(quickfix.field.RegistRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistRefID() {
+ return isSetField(508);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.RegistStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistStatus get(quickfix.field.RegistStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistStatus getRegistStatus() throws FieldNotFound {
+ return get(new quickfix.field.RegistStatus());
+ }
+
+ public boolean isSet(quickfix.field.RegistStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistStatus() {
+ return isSetField(506);
+ }
+
+ public void set(quickfix.field.RegistRejReasonCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistRejReasonCode get(quickfix.field.RegistRejReasonCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistRejReasonCode getRegistRejReasonCode() throws FieldNotFound {
+ return get(new quickfix.field.RegistRejReasonCode());
+ }
+
+ public boolean isSet(quickfix.field.RegistRejReasonCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistRejReasonCode() {
+ return isSetField(507);
+ }
+
+ public void set(quickfix.field.RegistRejReasonText value) {
+ setField(value);
+ }
+
+ public quickfix.field.RegistRejReasonText get(quickfix.field.RegistRejReasonText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RegistRejReasonText getRegistRejReasonText() throws FieldNotFound {
+ return get(new quickfix.field.RegistRejReasonText());
+ }
+
+ public boolean isSet(quickfix.field.RegistRejReasonText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRegistRejReasonText() {
+ return isSetField(496);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Reject.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Reject.java
new file mode 100644
index 000000000..8c9feb212
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/Reject.java
@@ -0,0 +1,172 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class Reject extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "3";
+
+
+ public Reject() {
+
+ super(new int[] {45, 371, 372, 373, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public Reject(quickfix.field.RefSeqNum refSeqNum) {
+ this();
+ setField(refSeqNum);
+ }
+
+ public void set(quickfix.field.RefSeqNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefSeqNum get(quickfix.field.RefSeqNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefSeqNum getRefSeqNum() throws FieldNotFound {
+ return get(new quickfix.field.RefSeqNum());
+ }
+
+ public boolean isSet(quickfix.field.RefSeqNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefSeqNum() {
+ return isSetField(45);
+ }
+
+ public void set(quickfix.field.RefTagID value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefTagID get(quickfix.field.RefTagID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefTagID getRefTagID() throws FieldNotFound {
+ return get(new quickfix.field.RefTagID());
+ }
+
+ public boolean isSet(quickfix.field.RefTagID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefTagID() {
+ return isSetField(371);
+ }
+
+ public void set(quickfix.field.RefMsgType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RefMsgType get(quickfix.field.RefMsgType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RefMsgType getRefMsgType() throws FieldNotFound {
+ return get(new quickfix.field.RefMsgType());
+ }
+
+ public boolean isSet(quickfix.field.RefMsgType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRefMsgType() {
+ return isSetField(372);
+ }
+
+ public void set(quickfix.field.SessionRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.SessionRejectReason get(quickfix.field.SessionRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SessionRejectReason getSessionRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.SessionRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.SessionRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSessionRejectReason() {
+ return isSetField(373);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RequestForPositions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RequestForPositions.java
new file mode 100644
index 000000000..59a9ca3d7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RequestForPositions.java
@@ -0,0 +1,3839 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class RequestForPositions extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AN";
+
+
+ public RequestForPositions() {
+
+ super(new int[] {710, 724, 573, 263, 453, 1, 660, 581, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 555, 711, 715, 716, 717, 386, 60, 725, 726, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public RequestForPositions(quickfix.field.PosReqID posReqID, quickfix.field.PosReqType posReqType, quickfix.field.Account account, quickfix.field.AccountType accountType, quickfix.field.ClearingBusinessDate clearingBusinessDate, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(posReqID);
+ setField(posReqType);
+ setField(account);
+ setField(accountType);
+ setField(clearingBusinessDate);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.PosReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqID get(quickfix.field.PosReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqID getPosReqID() throws FieldNotFound {
+ return get(new quickfix.field.PosReqID());
+ }
+
+ public boolean isSet(quickfix.field.PosReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqID() {
+ return isSetField(710);
+ }
+
+ public void set(quickfix.field.PosReqType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqType get(quickfix.field.PosReqType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqType getPosReqType() throws FieldNotFound {
+ return get(new quickfix.field.PosReqType());
+ }
+
+ public boolean isSet(quickfix.field.PosReqType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqType() {
+ return isSetField(724);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.SettlSessID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessID get(quickfix.field.SettlSessID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessID getSettlSessID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessID() {
+ return isSetField(716);
+ }
+
+ public void set(quickfix.field.SettlSessSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlSessSubID get(quickfix.field.SettlSessSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlSessSubID getSettlSessSubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlSessSubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlSessSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlSessSubID() {
+ return isSetField(717);
+ }
+
+ public void set(quickfix.field.NoTradingSessions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTradingSessions get(quickfix.field.NoTradingSessions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTradingSessions getNoTradingSessions() throws FieldNotFound {
+ return get(new quickfix.field.NoTradingSessions());
+ }
+
+ public boolean isSet(quickfix.field.NoTradingSessions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTradingSessions() {
+ return isSetField(386);
+ }
+
+ public static class NoTradingSessions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {336, 625, 0};
+
+ public NoTradingSessions() {
+ super(386, 336, ORDER);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.ResponseTransportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseTransportType get(quickfix.field.ResponseTransportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseTransportType getResponseTransportType() throws FieldNotFound {
+ return get(new quickfix.field.ResponseTransportType());
+ }
+
+ public boolean isSet(quickfix.field.ResponseTransportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseTransportType() {
+ return isSetField(725);
+ }
+
+ public void set(quickfix.field.ResponseDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseDestination get(quickfix.field.ResponseDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseDestination getResponseDestination() throws FieldNotFound {
+ return get(new quickfix.field.ResponseDestination());
+ }
+
+ public boolean isSet(quickfix.field.ResponseDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseDestination() {
+ return isSetField(726);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RequestForPositionsAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RequestForPositionsAck.java
new file mode 100644
index 000000000..4acddbe62
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/RequestForPositionsAck.java
@@ -0,0 +1,3722 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class RequestForPositionsAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AO";
+
+
+ public RequestForPositionsAck() {
+
+ super(new int[] {721, 710, 727, 325, 728, 729, 453, 1, 660, 581, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 15, 555, 711, 725, 726, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public RequestForPositionsAck(quickfix.field.PosMaintRptID posMaintRptID, quickfix.field.PosReqResult posReqResult, quickfix.field.PosReqStatus posReqStatus, quickfix.field.Account account, quickfix.field.AccountType accountType) {
+ this();
+ setField(posMaintRptID);
+ setField(posReqResult);
+ setField(posReqStatus);
+ setField(account);
+ setField(accountType);
+ }
+
+ public void set(quickfix.field.PosMaintRptID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosMaintRptID get(quickfix.field.PosMaintRptID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosMaintRptID getPosMaintRptID() throws FieldNotFound {
+ return get(new quickfix.field.PosMaintRptID());
+ }
+
+ public boolean isSet(quickfix.field.PosMaintRptID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosMaintRptID() {
+ return isSetField(721);
+ }
+
+ public void set(quickfix.field.PosReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqID get(quickfix.field.PosReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqID getPosReqID() throws FieldNotFound {
+ return get(new quickfix.field.PosReqID());
+ }
+
+ public boolean isSet(quickfix.field.PosReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqID() {
+ return isSetField(710);
+ }
+
+ public void set(quickfix.field.TotalNumPosReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalNumPosReports get(quickfix.field.TotalNumPosReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalNumPosReports getTotalNumPosReports() throws FieldNotFound {
+ return get(new quickfix.field.TotalNumPosReports());
+ }
+
+ public boolean isSet(quickfix.field.TotalNumPosReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalNumPosReports() {
+ return isSetField(727);
+ }
+
+ public void set(quickfix.field.UnsolicitedIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnsolicitedIndicator get(quickfix.field.UnsolicitedIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnsolicitedIndicator getUnsolicitedIndicator() throws FieldNotFound {
+ return get(new quickfix.field.UnsolicitedIndicator());
+ }
+
+ public boolean isSet(quickfix.field.UnsolicitedIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnsolicitedIndicator() {
+ return isSetField(325);
+ }
+
+ public void set(quickfix.field.PosReqResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqResult get(quickfix.field.PosReqResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqResult getPosReqResult() throws FieldNotFound {
+ return get(new quickfix.field.PosReqResult());
+ }
+
+ public boolean isSet(quickfix.field.PosReqResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqResult() {
+ return isSetField(728);
+ }
+
+ public void set(quickfix.field.PosReqStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosReqStatus get(quickfix.field.PosReqStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosReqStatus getPosReqStatus() throws FieldNotFound {
+ return get(new quickfix.field.PosReqStatus());
+ }
+
+ public boolean isSet(quickfix.field.PosReqStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosReqStatus() {
+ return isSetField(729);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.ResponseTransportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseTransportType get(quickfix.field.ResponseTransportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseTransportType getResponseTransportType() throws FieldNotFound {
+ return get(new quickfix.field.ResponseTransportType());
+ }
+
+ public boolean isSet(quickfix.field.ResponseTransportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseTransportType() {
+ return isSetField(725);
+ }
+
+ public void set(quickfix.field.ResponseDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseDestination get(quickfix.field.ResponseDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseDestination getResponseDestination() throws FieldNotFound {
+ return get(new quickfix.field.ResponseDestination());
+ }
+
+ public boolean isSet(quickfix.field.ResponseDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseDestination() {
+ return isSetField(726);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ResendRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ResendRequest.java
new file mode 100644
index 000000000..ae1892af7
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/ResendRequest.java
@@ -0,0 +1,68 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class ResendRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "2";
+
+
+ public ResendRequest() {
+
+ super(new int[] {7, 16, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public ResendRequest(quickfix.field.BeginSeqNo beginSeqNo, quickfix.field.EndSeqNo endSeqNo) {
+ this();
+ setField(beginSeqNo);
+ setField(endSeqNo);
+ }
+
+ public void set(quickfix.field.BeginSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.BeginSeqNo get(quickfix.field.BeginSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BeginSeqNo getBeginSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.BeginSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.BeginSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBeginSeqNo() {
+ return isSetField(7);
+ }
+
+ public void set(quickfix.field.EndSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndSeqNo get(quickfix.field.EndSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndSeqNo getEndSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.EndSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.EndSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndSeqNo() {
+ return isSetField(16);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityDefinition.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityDefinition.java
new file mode 100644
index 000000000..90c4f715c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityDefinition.java
@@ -0,0 +1,3604 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityDefinition extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "d";
+
+
+ public SecurityDefinition() {
+
+ super(new int[] {320, 322, 323, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 711, 15, 336, 625, 58, 354, 355, 555, 827, 561, 562, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityDefinition(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityResponseID securityResponseID, quickfix.field.SecurityResponseType securityResponseType) {
+ this();
+ setField(securityReqID);
+ setField(securityResponseID);
+ setField(securityResponseType);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseID get(quickfix.field.SecurityResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseID getSecurityResponseID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseID() {
+ return isSetField(322);
+ }
+
+ public void set(quickfix.field.SecurityResponseType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseType get(quickfix.field.SecurityResponseType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseType getSecurityResponseType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseType() {
+ return isSetField(323);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.ExpirationCycle value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpirationCycle get(quickfix.field.ExpirationCycle value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpirationCycle getExpirationCycle() throws FieldNotFound {
+ return get(new quickfix.field.ExpirationCycle());
+ }
+
+ public boolean isSet(quickfix.field.ExpirationCycle field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpirationCycle() {
+ return isSetField(827);
+ }
+
+ public void set(quickfix.field.RoundLot value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundLot get(quickfix.field.RoundLot value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundLot getRoundLot() throws FieldNotFound {
+ return get(new quickfix.field.RoundLot());
+ }
+
+ public boolean isSet(quickfix.field.RoundLot field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundLot() {
+ return isSetField(561);
+ }
+
+ public void set(quickfix.field.MinTradeVol value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinTradeVol get(quickfix.field.MinTradeVol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinTradeVol getMinTradeVol() throws FieldNotFound {
+ return get(new quickfix.field.MinTradeVol());
+ }
+
+ public boolean isSet(quickfix.field.MinTradeVol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinTradeVol() {
+ return isSetField(562);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityDefinitionRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityDefinitionRequest.java
new file mode 100644
index 000000000..f8a67ae36
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityDefinitionRequest.java
@@ -0,0 +1,3561 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityDefinitionRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "c";
+
+
+ public SecurityDefinitionRequest() {
+
+ super(new int[] {320, 321, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 711, 15, 58, 354, 355, 336, 625, 555, 827, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityDefinitionRequest(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityRequestType securityRequestType) {
+ this();
+ setField(securityReqID);
+ setField(securityRequestType);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityRequestType get(quickfix.field.SecurityRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityRequestType getSecurityRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityRequestType() {
+ return isSetField(321);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.ExpirationCycle value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpirationCycle get(quickfix.field.ExpirationCycle value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpirationCycle getExpirationCycle() throws FieldNotFound {
+ return get(new quickfix.field.ExpirationCycle());
+ }
+
+ public boolean isSet(quickfix.field.ExpirationCycle field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpirationCycle() {
+ return isSetField(827);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityList.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityList.java
new file mode 100644
index 000000000..dfbe9ddef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityList.java
@@ -0,0 +1,4534 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityList extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "y";
+
+
+ public SecurityList() {
+
+ super(new int[] {320, 322, 560, 393, 893, 146, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityList(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityResponseID securityResponseID, quickfix.field.SecurityRequestResult securityRequestResult) {
+ this();
+ setField(securityReqID);
+ setField(securityResponseID);
+ setField(securityRequestResult);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseID get(quickfix.field.SecurityResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseID getSecurityResponseID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseID() {
+ return isSetField(322);
+ }
+
+ public void set(quickfix.field.SecurityRequestResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityRequestResult get(quickfix.field.SecurityRequestResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityRequestResult getSecurityRequestResult() throws FieldNotFound {
+ return get(new quickfix.field.SecurityRequestResult());
+ }
+
+ public boolean isSet(quickfix.field.SecurityRequestResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityRequestResult() {
+ return isSetField(560);
+ }
+
+ public void set(quickfix.field.TotNoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoRelatedSym get(quickfix.field.TotNoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoRelatedSym getTotNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.TotNoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.TotNoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoRelatedSym() {
+ return isSetField(393);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoRelatedSym value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoRelatedSym get(quickfix.field.NoRelatedSym value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoRelatedSym getNoRelatedSym() throws FieldNotFound {
+ return get(new quickfix.field.NoRelatedSym());
+ }
+
+ public boolean isSet(quickfix.field.NoRelatedSym field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoRelatedSym() {
+ return isSetField(146);
+ }
+
+ public static class NoRelatedSym extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 15, 232, 555, 218, 220, 221, 222, 662, 663, 699, 761, 235, 236, 701, 696, 697, 698, 561, 562, 336, 625, 827, 58, 354, 355, 0};
+
+ public NoRelatedSym() {
+ super(146, 55, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 690, 587, 683, 676, 677, 678, 679, 680, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.LegBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData get(quickfix.fix44.component.LegBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegBenchmarkCurveData getLegBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency get(quickfix.field.LegBenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveCurrency getLegBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveCurrency() {
+ return isSetField(676);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurveName get(quickfix.field.LegBenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurveName getLegBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurveName() {
+ return isSetField(677);
+ }
+
+ public void set(quickfix.field.LegBenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint get(quickfix.field.LegBenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkCurvePoint getLegBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkCurvePoint() {
+ return isSetField(678);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPrice get(quickfix.field.LegBenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPrice getLegBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPrice() {
+ return isSetField(679);
+ }
+
+ public void set(quickfix.field.LegBenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegBenchmarkPriceType get(quickfix.field.LegBenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegBenchmarkPriceType getLegBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.LegBenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.LegBenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegBenchmarkPriceType() {
+ return isSetField(680);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.RoundLot value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundLot get(quickfix.field.RoundLot value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundLot getRoundLot() throws FieldNotFound {
+ return get(new quickfix.field.RoundLot());
+ }
+
+ public boolean isSet(quickfix.field.RoundLot field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundLot() {
+ return isSetField(561);
+ }
+
+ public void set(quickfix.field.MinTradeVol value) {
+ setField(value);
+ }
+
+ public quickfix.field.MinTradeVol get(quickfix.field.MinTradeVol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MinTradeVol getMinTradeVol() throws FieldNotFound {
+ return get(new quickfix.field.MinTradeVol());
+ }
+
+ public boolean isSet(quickfix.field.MinTradeVol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMinTradeVol() {
+ return isSetField(562);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.ExpirationCycle value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpirationCycle get(quickfix.field.ExpirationCycle value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpirationCycle getExpirationCycle() throws FieldNotFound {
+ return get(new quickfix.field.ExpirationCycle());
+ }
+
+ public boolean isSet(quickfix.field.ExpirationCycle field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpirationCycle() {
+ return isSetField(827);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityListRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityListRequest.java
new file mode 100644
index 000000000..4f11bcc42
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityListRequest.java
@@ -0,0 +1,3742 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityListRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "x";
+
+
+ public SecurityListRequest() {
+
+ super(new int[] {320, 559, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 15, 58, 354, 355, 336, 625, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityListRequest(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityListRequestType securityListRequestType) {
+ this();
+ setField(securityReqID);
+ setField(securityListRequestType);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityListRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityListRequestType get(quickfix.field.SecurityListRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityListRequestType getSecurityListRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityListRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityListRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityListRequestType() {
+ return isSetField(559);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityStatus.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityStatus.java
new file mode 100644
index 000000000..e68ee2cdf
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityStatus.java
@@ -0,0 +1,3786 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityStatus extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "f";
+
+
+ public SecurityStatus() {
+
+ super(new int[] {324, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 711, 555, 15, 336, 625, 325, 326, 291, 292, 327, 328, 329, 330, 331, 332, 333, 31, 60, 334, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public void set(quickfix.field.SecurityStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityStatusReqID get(quickfix.field.SecurityStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityStatusReqID getSecurityStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityStatusReqID() {
+ return isSetField(324);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.UnsolicitedIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnsolicitedIndicator get(quickfix.field.UnsolicitedIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnsolicitedIndicator getUnsolicitedIndicator() throws FieldNotFound {
+ return get(new quickfix.field.UnsolicitedIndicator());
+ }
+
+ public boolean isSet(quickfix.field.UnsolicitedIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnsolicitedIndicator() {
+ return isSetField(325);
+ }
+
+ public void set(quickfix.field.SecurityTradingStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityTradingStatus get(quickfix.field.SecurityTradingStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityTradingStatus getSecurityTradingStatus() throws FieldNotFound {
+ return get(new quickfix.field.SecurityTradingStatus());
+ }
+
+ public boolean isSet(quickfix.field.SecurityTradingStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityTradingStatus() {
+ return isSetField(326);
+ }
+
+ public void set(quickfix.field.FinancialStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.FinancialStatus get(quickfix.field.FinancialStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FinancialStatus getFinancialStatus() throws FieldNotFound {
+ return get(new quickfix.field.FinancialStatus());
+ }
+
+ public boolean isSet(quickfix.field.FinancialStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFinancialStatus() {
+ return isSetField(291);
+ }
+
+ public void set(quickfix.field.CorporateAction value) {
+ setField(value);
+ }
+
+ public quickfix.field.CorporateAction get(quickfix.field.CorporateAction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CorporateAction getCorporateAction() throws FieldNotFound {
+ return get(new quickfix.field.CorporateAction());
+ }
+
+ public boolean isSet(quickfix.field.CorporateAction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCorporateAction() {
+ return isSetField(292);
+ }
+
+ public void set(quickfix.field.HaltReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.HaltReason get(quickfix.field.HaltReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HaltReason getHaltReason() throws FieldNotFound {
+ return get(new quickfix.field.HaltReason());
+ }
+
+ public boolean isSet(quickfix.field.HaltReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHaltReason() {
+ return isSetField(327);
+ }
+
+ public void set(quickfix.field.InViewOfCommon value) {
+ setField(value);
+ }
+
+ public quickfix.field.InViewOfCommon get(quickfix.field.InViewOfCommon value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InViewOfCommon getInViewOfCommon() throws FieldNotFound {
+ return get(new quickfix.field.InViewOfCommon());
+ }
+
+ public boolean isSet(quickfix.field.InViewOfCommon field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInViewOfCommon() {
+ return isSetField(328);
+ }
+
+ public void set(quickfix.field.DueToRelated value) {
+ setField(value);
+ }
+
+ public quickfix.field.DueToRelated get(quickfix.field.DueToRelated value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DueToRelated getDueToRelated() throws FieldNotFound {
+ return get(new quickfix.field.DueToRelated());
+ }
+
+ public boolean isSet(quickfix.field.DueToRelated field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDueToRelated() {
+ return isSetField(329);
+ }
+
+ public void set(quickfix.field.BuyVolume value) {
+ setField(value);
+ }
+
+ public quickfix.field.BuyVolume get(quickfix.field.BuyVolume value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BuyVolume getBuyVolume() throws FieldNotFound {
+ return get(new quickfix.field.BuyVolume());
+ }
+
+ public boolean isSet(quickfix.field.BuyVolume field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBuyVolume() {
+ return isSetField(330);
+ }
+
+ public void set(quickfix.field.SellVolume value) {
+ setField(value);
+ }
+
+ public quickfix.field.SellVolume get(quickfix.field.SellVolume value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SellVolume getSellVolume() throws FieldNotFound {
+ return get(new quickfix.field.SellVolume());
+ }
+
+ public boolean isSet(quickfix.field.SellVolume field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSellVolume() {
+ return isSetField(331);
+ }
+
+ public void set(quickfix.field.HighPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.HighPx get(quickfix.field.HighPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.HighPx getHighPx() throws FieldNotFound {
+ return get(new quickfix.field.HighPx());
+ }
+
+ public boolean isSet(quickfix.field.HighPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetHighPx() {
+ return isSetField(332);
+ }
+
+ public void set(quickfix.field.LowPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LowPx get(quickfix.field.LowPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LowPx getLowPx() throws FieldNotFound {
+ return get(new quickfix.field.LowPx());
+ }
+
+ public boolean isSet(quickfix.field.LowPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLowPx() {
+ return isSetField(333);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.Adjustment value) {
+ setField(value);
+ }
+
+ public quickfix.field.Adjustment get(quickfix.field.Adjustment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Adjustment getAdjustment() throws FieldNotFound {
+ return get(new quickfix.field.Adjustment());
+ }
+
+ public boolean isSet(quickfix.field.Adjustment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAdjustment() {
+ return isSetField(334);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityStatusRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityStatusRequest.java
new file mode 100644
index 000000000..976183d40
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityStatusRequest.java
@@ -0,0 +1,3456 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityStatusRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "e";
+
+
+ public SecurityStatusRequest() {
+
+ super(new int[] {324, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 711, 555, 15, 263, 336, 625, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityStatusRequest(quickfix.field.SecurityStatusReqID securityStatusReqID, quickfix.field.SubscriptionRequestType subscriptionRequestType) {
+ this();
+ setField(securityStatusReqID);
+ setField(subscriptionRequestType);
+ }
+
+ public void set(quickfix.field.SecurityStatusReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityStatusReqID get(quickfix.field.SecurityStatusReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityStatusReqID getSecurityStatusReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityStatusReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityStatusReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityStatusReqID() {
+ return isSetField(324);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityTypeRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityTypeRequest.java
new file mode 100644
index 000000000..fee98f3c8
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityTypeRequest.java
@@ -0,0 +1,214 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class SecurityTypeRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "v";
+
+
+ public SecurityTypeRequest() {
+
+ super(new int[] {320, 58, 354, 355, 336, 625, 460, 167, 762, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityTypeRequest(quickfix.field.SecurityReqID securityReqID) {
+ this();
+ setField(securityReqID);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityTypes.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityTypes.java
new file mode 100644
index 000000000..563df13a3
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SecurityTypes.java
@@ -0,0 +1,375 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SecurityTypes extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "w";
+
+
+ public SecurityTypes() {
+
+ super(new int[] {320, 322, 323, 557, 893, 558, 58, 354, 355, 336, 625, 263, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SecurityTypes(quickfix.field.SecurityReqID securityReqID, quickfix.field.SecurityResponseID securityResponseID, quickfix.field.SecurityResponseType securityResponseType) {
+ this();
+ setField(securityReqID);
+ setField(securityResponseID);
+ setField(securityResponseType);
+ }
+
+ public void set(quickfix.field.SecurityReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityReqID get(quickfix.field.SecurityReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityReqID getSecurityReqID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityReqID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityReqID() {
+ return isSetField(320);
+ }
+
+ public void set(quickfix.field.SecurityResponseID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseID get(quickfix.field.SecurityResponseID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseID getSecurityResponseID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseID() {
+ return isSetField(322);
+ }
+
+ public void set(quickfix.field.SecurityResponseType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityResponseType get(quickfix.field.SecurityResponseType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityResponseType getSecurityResponseType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityResponseType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityResponseType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityResponseType() {
+ return isSetField(323);
+ }
+
+ public void set(quickfix.field.TotNoSecurityTypes value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNoSecurityTypes get(quickfix.field.TotNoSecurityTypes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNoSecurityTypes getTotNoSecurityTypes() throws FieldNotFound {
+ return get(new quickfix.field.TotNoSecurityTypes());
+ }
+
+ public boolean isSet(quickfix.field.TotNoSecurityTypes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNoSecurityTypes() {
+ return isSetField(557);
+ }
+
+ public void set(quickfix.field.LastFragment value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastFragment get(quickfix.field.LastFragment value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastFragment getLastFragment() throws FieldNotFound {
+ return get(new quickfix.field.LastFragment());
+ }
+
+ public boolean isSet(quickfix.field.LastFragment field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastFragment() {
+ return isSetField(893);
+ }
+
+ public void set(quickfix.field.NoSecurityTypes value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityTypes get(quickfix.field.NoSecurityTypes value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityTypes getNoSecurityTypes() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityTypes());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityTypes field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityTypes() {
+ return isSetField(558);
+ }
+
+ public static class NoSecurityTypes extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {167, 762, 460, 461, 0};
+
+ public NoSecurityTypes() {
+ super(558, 167, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SequenceReset.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SequenceReset.java
new file mode 100644
index 000000000..bcd76ee88
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SequenceReset.java
@@ -0,0 +1,67 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class SequenceReset extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "4";
+
+
+ public SequenceReset() {
+
+ super(new int[] {123, 36, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SequenceReset(quickfix.field.NewSeqNo newSeqNo) {
+ this();
+ setField(newSeqNo);
+ }
+
+ public void set(quickfix.field.GapFillFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.GapFillFlag get(quickfix.field.GapFillFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GapFillFlag getGapFillFlag() throws FieldNotFound {
+ return get(new quickfix.field.GapFillFlag());
+ }
+
+ public boolean isSet(quickfix.field.GapFillFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGapFillFlag() {
+ return isSetField(123);
+ }
+
+ public void set(quickfix.field.NewSeqNo value) {
+ setField(value);
+ }
+
+ public quickfix.field.NewSeqNo get(quickfix.field.NewSeqNo value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NewSeqNo getNewSeqNo() throws FieldNotFound {
+ return get(new quickfix.field.NewSeqNo());
+ }
+
+ public boolean isSet(quickfix.field.NewSeqNo field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNewSeqNo() {
+ return isSetField(36);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SettlementInstructionRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SettlementInstructionRequest.java
new file mode 100644
index 000000000..46ee7915c
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SettlementInstructionRequest.java
@@ -0,0 +1,503 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SettlementInstructionRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AV";
+
+
+ public SettlementInstructionRequest() {
+
+ super(new int[] {791, 60, 453, 79, 661, 54, 460, 167, 461, 168, 126, 779, 169, 170, 171, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SettlementInstructionRequest(quickfix.field.SettlInstReqID settlInstReqID, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(settlInstReqID);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.SettlInstReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstReqID get(quickfix.field.SettlInstReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstReqID getSettlInstReqID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstReqID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstReqID() {
+ return isSetField(791);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.LastUpdateTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastUpdateTime get(quickfix.field.LastUpdateTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastUpdateTime getLastUpdateTime() throws FieldNotFound {
+ return get(new quickfix.field.LastUpdateTime());
+ }
+
+ public boolean isSet(quickfix.field.LastUpdateTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastUpdateTime() {
+ return isSetField(779);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SettlementInstructions.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SettlementInstructions.java
new file mode 100644
index 000000000..38e537db1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/SettlementInstructions.java
@@ -0,0 +1,1183 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class SettlementInstructions extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "T";
+
+
+ public SettlementInstructions() {
+
+ super(new int[] {777, 791, 160, 792, 58, 354, 355, 11, 60, 778, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public SettlementInstructions(quickfix.field.SettlInstMsgID settlInstMsgID, quickfix.field.SettlInstMode settlInstMode, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(settlInstMsgID);
+ setField(settlInstMode);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.SettlInstMsgID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMsgID get(quickfix.field.SettlInstMsgID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMsgID getSettlInstMsgID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMsgID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMsgID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMsgID() {
+ return isSetField(777);
+ }
+
+ public void set(quickfix.field.SettlInstReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstReqID get(quickfix.field.SettlInstReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstReqID getSettlInstReqID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstReqID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstReqID() {
+ return isSetField(791);
+ }
+
+ public void set(quickfix.field.SettlInstMode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstMode get(quickfix.field.SettlInstMode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstMode getSettlInstMode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstMode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstMode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstMode() {
+ return isSetField(160);
+ }
+
+ public void set(quickfix.field.SettlInstReqRejCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstReqRejCode get(quickfix.field.SettlInstReqRejCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstReqRejCode getSettlInstReqRejCode() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstReqRejCode());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstReqRejCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstReqRejCode() {
+ return isSetField(792);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.field.NoSettlInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlInst get(quickfix.field.NoSettlInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlInst getNoSettlInst() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlInst());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlInst() {
+ return isSetField(778);
+ }
+
+ public static class NoSettlInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {162, 163, 214, 453, 54, 460, 167, 461, 168, 126, 779, 172, 169, 170, 171, 85, 492, 476, 488, 489, 503, 490, 491, 504, 505, 0};
+
+ public NoSettlInst() {
+ super(778, 162, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstID get(quickfix.field.SettlInstID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstID getSettlInstID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstID() {
+ return isSetField(162);
+ }
+
+ public void set(quickfix.field.SettlInstTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstTransType get(quickfix.field.SettlInstTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstTransType getSettlInstTransType() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstTransType());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstTransType() {
+ return isSetField(163);
+ }
+
+ public void set(quickfix.field.SettlInstRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstRefID get(quickfix.field.SettlInstRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstRefID getSettlInstRefID() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstRefID());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstRefID() {
+ return isSetField(214);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.EffectiveTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.EffectiveTime get(quickfix.field.EffectiveTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EffectiveTime getEffectiveTime() throws FieldNotFound {
+ return get(new quickfix.field.EffectiveTime());
+ }
+
+ public boolean isSet(quickfix.field.EffectiveTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEffectiveTime() {
+ return isSetField(168);
+ }
+
+ public void set(quickfix.field.ExpireTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExpireTime get(quickfix.field.ExpireTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExpireTime getExpireTime() throws FieldNotFound {
+ return get(new quickfix.field.ExpireTime());
+ }
+
+ public boolean isSet(quickfix.field.ExpireTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExpireTime() {
+ return isSetField(126);
+ }
+
+ public void set(quickfix.field.LastUpdateTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastUpdateTime get(quickfix.field.LastUpdateTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastUpdateTime getLastUpdateTime() throws FieldNotFound {
+ return get(new quickfix.field.LastUpdateTime());
+ }
+
+ public boolean isSet(quickfix.field.LastUpdateTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastUpdateTime() {
+ return isSetField(779);
+ }
+
+ public void set(quickfix.fix44.component.SettlInstructionsData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData get(quickfix.fix44.component.SettlInstructionsData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlInstructionsData getSettlInstructionsData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlInstructionsData());
+ }
+
+ public void set(quickfix.field.SettlDeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDeliveryType get(quickfix.field.SettlDeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDeliveryType getSettlDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.SettlDeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.SettlDeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDeliveryType() {
+ return isSetField(172);
+ }
+
+ public void set(quickfix.field.StandInstDbType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbType get(quickfix.field.StandInstDbType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbType getStandInstDbType() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbType());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbType() {
+ return isSetField(169);
+ }
+
+ public void set(quickfix.field.StandInstDbName value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbName get(quickfix.field.StandInstDbName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbName getStandInstDbName() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbName());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbName() {
+ return isSetField(170);
+ }
+
+ public void set(quickfix.field.StandInstDbID value) {
+ setField(value);
+ }
+
+ public quickfix.field.StandInstDbID get(quickfix.field.StandInstDbID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StandInstDbID getStandInstDbID() throws FieldNotFound {
+ return get(new quickfix.field.StandInstDbID());
+ }
+
+ public boolean isSet(quickfix.field.StandInstDbID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStandInstDbID() {
+ return isSetField(171);
+ }
+
+ public void set(quickfix.field.NoDlvyInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDlvyInst get(quickfix.field.NoDlvyInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDlvyInst getNoDlvyInst() throws FieldNotFound {
+ return get(new quickfix.field.NoDlvyInst());
+ }
+
+ public boolean isSet(quickfix.field.NoDlvyInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDlvyInst() {
+ return isSetField(85);
+ }
+
+ public static class NoDlvyInst extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {165, 787, 781, 0};
+
+ public NoDlvyInst() {
+ super(85, 165, ORDER);
+ }
+
+ public void set(quickfix.field.SettlInstSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlInstSource get(quickfix.field.SettlInstSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlInstSource getSettlInstSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlInstSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlInstSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlInstSource() {
+ return isSetField(165);
+ }
+
+ public void set(quickfix.field.DlvyInstType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DlvyInstType get(quickfix.field.DlvyInstType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DlvyInstType getDlvyInstType() throws FieldNotFound {
+ return get(new quickfix.field.DlvyInstType());
+ }
+
+ public boolean isSet(quickfix.field.DlvyInstType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDlvyInstType() {
+ return isSetField(787);
+ }
+
+ public void set(quickfix.fix44.component.SettlParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SettlParties get(quickfix.fix44.component.SettlParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SettlParties getSettlParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SettlParties());
+ }
+
+ public void set(quickfix.field.NoSettlPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartyIDs get(quickfix.field.NoSettlPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartyIDs getNoSettlPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartyIDs() {
+ return isSetField(781);
+ }
+
+ public static class NoSettlPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {782, 783, 784, 801, 0};
+
+ public NoSettlPartyIDs() {
+ super(781, 782, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyID get(quickfix.field.SettlPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyID getSettlPartyID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyID() {
+ return isSetField(782);
+ }
+
+ public void set(quickfix.field.SettlPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyIDSource get(quickfix.field.SettlPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyIDSource getSettlPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyIDSource() {
+ return isSetField(783);
+ }
+
+ public void set(quickfix.field.SettlPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartyRole get(quickfix.field.SettlPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartyRole getSettlPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartyRole() {
+ return isSetField(784);
+ }
+
+ public void set(quickfix.field.NoSettlPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSettlPartySubIDs get(quickfix.field.NoSettlPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSettlPartySubIDs getNoSettlPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoSettlPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoSettlPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSettlPartySubIDs() {
+ return isSetField(801);
+ }
+
+ public static class NoSettlPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {785, 786, 0};
+
+ public NoSettlPartySubIDs() {
+ super(801, 785, ORDER);
+ }
+
+ public void set(quickfix.field.SettlPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubID get(quickfix.field.SettlPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubID getSettlPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubID() {
+ return isSetField(785);
+ }
+
+ public void set(quickfix.field.SettlPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlPartySubIDType get(quickfix.field.SettlPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlPartySubIDType getSettlPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.SettlPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.SettlPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlPartySubIDType() {
+ return isSetField(786);
+ }
+
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.PaymentMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PaymentMethod get(quickfix.field.PaymentMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PaymentMethod getPaymentMethod() throws FieldNotFound {
+ return get(new quickfix.field.PaymentMethod());
+ }
+
+ public boolean isSet(quickfix.field.PaymentMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPaymentMethod() {
+ return isSetField(492);
+ }
+
+ public void set(quickfix.field.PaymentRef value) {
+ setField(value);
+ }
+
+ public quickfix.field.PaymentRef get(quickfix.field.PaymentRef value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PaymentRef getPaymentRef() throws FieldNotFound {
+ return get(new quickfix.field.PaymentRef());
+ }
+
+ public boolean isSet(quickfix.field.PaymentRef field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPaymentRef() {
+ return isSetField(476);
+ }
+
+ public void set(quickfix.field.CardHolderName value) {
+ setField(value);
+ }
+
+ public quickfix.field.CardHolderName get(quickfix.field.CardHolderName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CardHolderName getCardHolderName() throws FieldNotFound {
+ return get(new quickfix.field.CardHolderName());
+ }
+
+ public boolean isSet(quickfix.field.CardHolderName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCardHolderName() {
+ return isSetField(488);
+ }
+
+ public void set(quickfix.field.CardNumber value) {
+ setField(value);
+ }
+
+ public quickfix.field.CardNumber get(quickfix.field.CardNumber value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CardNumber getCardNumber() throws FieldNotFound {
+ return get(new quickfix.field.CardNumber());
+ }
+
+ public boolean isSet(quickfix.field.CardNumber field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCardNumber() {
+ return isSetField(489);
+ }
+
+ public void set(quickfix.field.CardStartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CardStartDate get(quickfix.field.CardStartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CardStartDate getCardStartDate() throws FieldNotFound {
+ return get(new quickfix.field.CardStartDate());
+ }
+
+ public boolean isSet(quickfix.field.CardStartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCardStartDate() {
+ return isSetField(503);
+ }
+
+ public void set(quickfix.field.CardExpDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CardExpDate get(quickfix.field.CardExpDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CardExpDate getCardExpDate() throws FieldNotFound {
+ return get(new quickfix.field.CardExpDate());
+ }
+
+ public boolean isSet(quickfix.field.CardExpDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCardExpDate() {
+ return isSetField(490);
+ }
+
+ public void set(quickfix.field.CardIssNum value) {
+ setField(value);
+ }
+
+ public quickfix.field.CardIssNum get(quickfix.field.CardIssNum value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CardIssNum getCardIssNum() throws FieldNotFound {
+ return get(new quickfix.field.CardIssNum());
+ }
+
+ public boolean isSet(quickfix.field.CardIssNum field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCardIssNum() {
+ return isSetField(491);
+ }
+
+ public void set(quickfix.field.PaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.PaymentDate get(quickfix.field.PaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PaymentDate getPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.PaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.PaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPaymentDate() {
+ return isSetField(504);
+ }
+
+ public void set(quickfix.field.PaymentRemitterID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PaymentRemitterID get(quickfix.field.PaymentRemitterID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PaymentRemitterID getPaymentRemitterID() throws FieldNotFound {
+ return get(new quickfix.field.PaymentRemitterID());
+ }
+
+ public boolean isSet(quickfix.field.PaymentRemitterID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPaymentRemitterID() {
+ return isSetField(505);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TestRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TestRequest.java
new file mode 100644
index 000000000..e057d619b
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TestRequest.java
@@ -0,0 +1,46 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+
+public class TestRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "1";
+
+
+ public TestRequest() {
+
+ super(new int[] {112, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TestRequest(quickfix.field.TestReqID testReqID) {
+ this();
+ setField(testReqID);
+ }
+
+ public void set(quickfix.field.TestReqID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TestReqID get(quickfix.field.TestReqID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TestReqID getTestReqID() throws FieldNotFound {
+ return get(new quickfix.field.TestReqID());
+ }
+
+ public boolean isSet(quickfix.field.TestReqID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTestReqID() {
+ return isSetField(112);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReport.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReport.java
new file mode 100644
index 000000000..390ad9de2
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReport.java
@@ -0,0 +1,7579 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class TradeCaptureReport extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AE";
+
+
+ public TradeCaptureReport() {
+
+ super(new int[] {571, 487, 856, 568, 828, 829, 855, 830, 150, 748, 912, 325, 263, 572, 881, 818, 820, 880, 17, 39, 527, 378, 570, 423, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 913, 914, 915, 918, 788, 916, 917, 919, 898, 38, 152, 516, 468, 469, 854, 235, 236, 701, 696, 697, 698, 711, 822, 823, 32, 31, 669, 194, 195, 30, 75, 715, 6, 218, 220, 221, 222, 662, 663, 699, 761, 819, 753, 442, 824, 555, 60, 768, 63, 64, 573, 574, 552, 797, 852, 853, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TradeCaptureReport(quickfix.field.TradeReportID tradeReportID, quickfix.field.PreviouslyReported previouslyReported, quickfix.field.LastQty lastQty, quickfix.field.LastPx lastPx, quickfix.field.TradeDate tradeDate, quickfix.field.TransactTime transactTime) {
+ this();
+ setField(tradeReportID);
+ setField(previouslyReported);
+ setField(lastQty);
+ setField(lastPx);
+ setField(tradeDate);
+ setField(transactTime);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.TradeReportTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportTransType get(quickfix.field.TradeReportTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportTransType getTradeReportTransType() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportTransType());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportTransType() {
+ return isSetField(487);
+ }
+
+ public void set(quickfix.field.TradeReportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportType get(quickfix.field.TradeReportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportType getTradeReportType() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportType());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportType() {
+ return isSetField(856);
+ }
+
+ public void set(quickfix.field.TradeRequestID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestID get(quickfix.field.TradeRequestID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestID getTradeRequestID() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestID());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestID() {
+ return isSetField(568);
+ }
+
+ public void set(quickfix.field.TrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdType get(quickfix.field.TrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdType getTrdType() throws FieldNotFound {
+ return get(new quickfix.field.TrdType());
+ }
+
+ public boolean isSet(quickfix.field.TrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdType() {
+ return isSetField(828);
+ }
+
+ public void set(quickfix.field.TrdSubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdSubType get(quickfix.field.TrdSubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdSubType getTrdSubType() throws FieldNotFound {
+ return get(new quickfix.field.TrdSubType());
+ }
+
+ public boolean isSet(quickfix.field.TrdSubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdSubType() {
+ return isSetField(829);
+ }
+
+ public void set(quickfix.field.SecondaryTrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTrdType get(quickfix.field.SecondaryTrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTrdType getSecondaryTrdType() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTrdType());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTrdType() {
+ return isSetField(855);
+ }
+
+ public void set(quickfix.field.TransferReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransferReason get(quickfix.field.TransferReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransferReason getTransferReason() throws FieldNotFound {
+ return get(new quickfix.field.TransferReason());
+ }
+
+ public boolean isSet(quickfix.field.TransferReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransferReason() {
+ return isSetField(830);
+ }
+
+ public void set(quickfix.field.ExecType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecType get(quickfix.field.ExecType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecType getExecType() throws FieldNotFound {
+ return get(new quickfix.field.ExecType());
+ }
+
+ public boolean isSet(quickfix.field.ExecType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecType() {
+ return isSetField(150);
+ }
+
+ public void set(quickfix.field.TotNumTradeReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNumTradeReports get(quickfix.field.TotNumTradeReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNumTradeReports getTotNumTradeReports() throws FieldNotFound {
+ return get(new quickfix.field.TotNumTradeReports());
+ }
+
+ public boolean isSet(quickfix.field.TotNumTradeReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNumTradeReports() {
+ return isSetField(748);
+ }
+
+ public void set(quickfix.field.LastRptRequested value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastRptRequested get(quickfix.field.LastRptRequested value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastRptRequested getLastRptRequested() throws FieldNotFound {
+ return get(new quickfix.field.LastRptRequested());
+ }
+
+ public boolean isSet(quickfix.field.LastRptRequested field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastRptRequested() {
+ return isSetField(912);
+ }
+
+ public void set(quickfix.field.UnsolicitedIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnsolicitedIndicator get(quickfix.field.UnsolicitedIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnsolicitedIndicator getUnsolicitedIndicator() throws FieldNotFound {
+ return get(new quickfix.field.UnsolicitedIndicator());
+ }
+
+ public boolean isSet(quickfix.field.UnsolicitedIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnsolicitedIndicator() {
+ return isSetField(325);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TradeReportRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportRefID get(quickfix.field.TradeReportRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportRefID getTradeReportRefID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportRefID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportRefID() {
+ return isSetField(572);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportRefID get(quickfix.field.SecondaryTradeReportRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportRefID getSecondaryTradeReportRefID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportRefID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportRefID() {
+ return isSetField(881);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ public void set(quickfix.field.TradeLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeLinkID get(quickfix.field.TradeLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeLinkID getTradeLinkID() throws FieldNotFound {
+ return get(new quickfix.field.TradeLinkID());
+ }
+
+ public boolean isSet(quickfix.field.TradeLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeLinkID() {
+ return isSetField(820);
+ }
+
+ public void set(quickfix.field.TrdMatchID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdMatchID get(quickfix.field.TrdMatchID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdMatchID getTrdMatchID() throws FieldNotFound {
+ return get(new quickfix.field.TrdMatchID());
+ }
+
+ public boolean isSet(quickfix.field.TrdMatchID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdMatchID() {
+ return isSetField(880);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.OrdStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdStatus get(quickfix.field.OrdStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdStatus getOrdStatus() throws FieldNotFound {
+ return get(new quickfix.field.OrdStatus());
+ }
+
+ public boolean isSet(quickfix.field.OrdStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdStatus() {
+ return isSetField(39);
+ }
+
+ public void set(quickfix.field.SecondaryExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryExecID get(quickfix.field.SecondaryExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryExecID getSecondaryExecID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryExecID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryExecID() {
+ return isSetField(527);
+ }
+
+ public void set(quickfix.field.ExecRestatementReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecRestatementReason get(quickfix.field.ExecRestatementReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecRestatementReason getExecRestatementReason() throws FieldNotFound {
+ return get(new quickfix.field.ExecRestatementReason());
+ }
+
+ public boolean isSet(quickfix.field.ExecRestatementReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecRestatementReason() {
+ return isSetField(378);
+ }
+
+ public void set(quickfix.field.PreviouslyReported value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreviouslyReported get(quickfix.field.PreviouslyReported value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreviouslyReported getPreviouslyReported() throws FieldNotFound {
+ return get(new quickfix.field.PreviouslyReported());
+ }
+
+ public boolean isSet(quickfix.field.PreviouslyReported field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreviouslyReported() {
+ return isSetField(570);
+ }
+
+ public void set(quickfix.field.PriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PriceType get(quickfix.field.PriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PriceType getPriceType() throws FieldNotFound {
+ return get(new quickfix.field.PriceType());
+ }
+
+ public boolean isSet(quickfix.field.PriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPriceType() {
+ return isSetField(423);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.fix44.component.OrderQtyData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.OrderQtyData get(quickfix.fix44.component.OrderQtyData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.OrderQtyData getOrderQtyData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.OrderQtyData());
+ }
+
+ public void set(quickfix.field.OrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderQty get(quickfix.field.OrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderQty getOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.OrderQty());
+ }
+
+ public boolean isSet(quickfix.field.OrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderQty() {
+ return isSetField(38);
+ }
+
+ public void set(quickfix.field.CashOrderQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.CashOrderQty get(quickfix.field.CashOrderQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CashOrderQty getCashOrderQty() throws FieldNotFound {
+ return get(new quickfix.field.CashOrderQty());
+ }
+
+ public boolean isSet(quickfix.field.CashOrderQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCashOrderQty() {
+ return isSetField(152);
+ }
+
+ public void set(quickfix.field.OrderPercent value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderPercent get(quickfix.field.OrderPercent value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderPercent getOrderPercent() throws FieldNotFound {
+ return get(new quickfix.field.OrderPercent());
+ }
+
+ public boolean isSet(quickfix.field.OrderPercent field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderPercent() {
+ return isSetField(516);
+ }
+
+ public void set(quickfix.field.RoundingDirection value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingDirection get(quickfix.field.RoundingDirection value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingDirection getRoundingDirection() throws FieldNotFound {
+ return get(new quickfix.field.RoundingDirection());
+ }
+
+ public boolean isSet(quickfix.field.RoundingDirection field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingDirection() {
+ return isSetField(468);
+ }
+
+ public void set(quickfix.field.RoundingModulus value) {
+ setField(value);
+ }
+
+ public quickfix.field.RoundingModulus get(quickfix.field.RoundingModulus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RoundingModulus getRoundingModulus() throws FieldNotFound {
+ return get(new quickfix.field.RoundingModulus());
+ }
+
+ public boolean isSet(quickfix.field.RoundingModulus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRoundingModulus() {
+ return isSetField(469);
+ }
+
+ public void set(quickfix.field.QtyType value) {
+ setField(value);
+ }
+
+ public quickfix.field.QtyType get(quickfix.field.QtyType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.QtyType getQtyType() throws FieldNotFound {
+ return get(new quickfix.field.QtyType());
+ }
+
+ public boolean isSet(quickfix.field.QtyType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetQtyType() {
+ return isSetField(854);
+ }
+
+ public void set(quickfix.fix44.component.YieldData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.YieldData get(quickfix.fix44.component.YieldData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.YieldData getYieldData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.YieldData());
+ }
+
+ public void set(quickfix.field.YieldType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldType get(quickfix.field.YieldType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldType getYieldType() throws FieldNotFound {
+ return get(new quickfix.field.YieldType());
+ }
+
+ public boolean isSet(quickfix.field.YieldType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldType() {
+ return isSetField(235);
+ }
+
+ public void set(quickfix.field.Yield value) {
+ setField(value);
+ }
+
+ public quickfix.field.Yield get(quickfix.field.Yield value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Yield getYield() throws FieldNotFound {
+ return get(new quickfix.field.Yield());
+ }
+
+ public boolean isSet(quickfix.field.Yield field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYield() {
+ return isSetField(236);
+ }
+
+ public void set(quickfix.field.YieldCalcDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldCalcDate get(quickfix.field.YieldCalcDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldCalcDate getYieldCalcDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldCalcDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldCalcDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldCalcDate() {
+ return isSetField(701);
+ }
+
+ public void set(quickfix.field.YieldRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionDate get(quickfix.field.YieldRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionDate getYieldRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionDate() {
+ return isSetField(696);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPrice get(quickfix.field.YieldRedemptionPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPrice getYieldRedemptionPrice() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPrice());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPrice() {
+ return isSetField(697);
+ }
+
+ public void set(quickfix.field.YieldRedemptionPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.YieldRedemptionPriceType get(quickfix.field.YieldRedemptionPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.YieldRedemptionPriceType getYieldRedemptionPriceType() throws FieldNotFound {
+ return get(new quickfix.field.YieldRedemptionPriceType());
+ }
+
+ public boolean isSet(quickfix.field.YieldRedemptionPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetYieldRedemptionPriceType() {
+ return isSetField(698);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingTradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingTradingSessionID get(quickfix.field.UnderlyingTradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingTradingSessionID getUnderlyingTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingTradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingTradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingTradingSessionID() {
+ return isSetField(822);
+ }
+
+ public void set(quickfix.field.UnderlyingTradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingTradingSessionSubID get(quickfix.field.UnderlyingTradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingTradingSessionSubID getUnderlyingTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingTradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingTradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingTradingSessionSubID() {
+ return isSetField(823);
+ }
+
+ public void set(quickfix.field.LastQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastQty get(quickfix.field.LastQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastQty getLastQty() throws FieldNotFound {
+ return get(new quickfix.field.LastQty());
+ }
+
+ public boolean isSet(quickfix.field.LastQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastQty() {
+ return isSetField(32);
+ }
+
+ public void set(quickfix.field.LastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastPx get(quickfix.field.LastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastPx getLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LastPx());
+ }
+
+ public boolean isSet(quickfix.field.LastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastPx() {
+ return isSetField(31);
+ }
+
+ public void set(quickfix.field.LastParPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastParPx get(quickfix.field.LastParPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastParPx getLastParPx() throws FieldNotFound {
+ return get(new quickfix.field.LastParPx());
+ }
+
+ public boolean isSet(quickfix.field.LastParPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastParPx() {
+ return isSetField(669);
+ }
+
+ public void set(quickfix.field.LastSpotRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastSpotRate get(quickfix.field.LastSpotRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastSpotRate getLastSpotRate() throws FieldNotFound {
+ return get(new quickfix.field.LastSpotRate());
+ }
+
+ public boolean isSet(quickfix.field.LastSpotRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastSpotRate() {
+ return isSetField(194);
+ }
+
+ public void set(quickfix.field.LastForwardPoints value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastForwardPoints get(quickfix.field.LastForwardPoints value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastForwardPoints getLastForwardPoints() throws FieldNotFound {
+ return get(new quickfix.field.LastForwardPoints());
+ }
+
+ public boolean isSet(quickfix.field.LastForwardPoints field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastForwardPoints() {
+ return isSetField(195);
+ }
+
+ public void set(quickfix.field.LastMkt value) {
+ setField(value);
+ }
+
+ public quickfix.field.LastMkt get(quickfix.field.LastMkt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LastMkt getLastMkt() throws FieldNotFound {
+ return get(new quickfix.field.LastMkt());
+ }
+
+ public boolean isSet(quickfix.field.LastMkt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLastMkt() {
+ return isSetField(30);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.AvgPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPx get(quickfix.field.AvgPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPx getAvgPx() throws FieldNotFound {
+ return get(new quickfix.field.AvgPx());
+ }
+
+ public boolean isSet(quickfix.field.AvgPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPx() {
+ return isSetField(6);
+ }
+
+ public void set(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData get(quickfix.fix44.component.SpreadOrBenchmarkCurveData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.SpreadOrBenchmarkCurveData getSpreadOrBenchmarkCurveData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.SpreadOrBenchmarkCurveData());
+ }
+
+ public void set(quickfix.field.Spread value) {
+ setField(value);
+ }
+
+ public quickfix.field.Spread get(quickfix.field.Spread value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Spread getSpread() throws FieldNotFound {
+ return get(new quickfix.field.Spread());
+ }
+
+ public boolean isSet(quickfix.field.Spread field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSpread() {
+ return isSetField(218);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency get(quickfix.field.BenchmarkCurveCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveCurrency getBenchmarkCurveCurrency() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveCurrency());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveCurrency() {
+ return isSetField(220);
+ }
+
+ public void set(quickfix.field.BenchmarkCurveName value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurveName get(quickfix.field.BenchmarkCurveName value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurveName getBenchmarkCurveName() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurveName());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurveName field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurveName() {
+ return isSetField(221);
+ }
+
+ public void set(quickfix.field.BenchmarkCurvePoint value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkCurvePoint get(quickfix.field.BenchmarkCurvePoint value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkCurvePoint getBenchmarkCurvePoint() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkCurvePoint());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkCurvePoint field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkCurvePoint() {
+ return isSetField(222);
+ }
+
+ public void set(quickfix.field.BenchmarkPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPrice get(quickfix.field.BenchmarkPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPrice getBenchmarkPrice() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPrice());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPrice() {
+ return isSetField(662);
+ }
+
+ public void set(quickfix.field.BenchmarkPriceType value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkPriceType get(quickfix.field.BenchmarkPriceType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkPriceType getBenchmarkPriceType() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkPriceType());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkPriceType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkPriceType() {
+ return isSetField(663);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityID get(quickfix.field.BenchmarkSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityID getBenchmarkSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityID() {
+ return isSetField(699);
+ }
+
+ public void set(quickfix.field.BenchmarkSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource get(quickfix.field.BenchmarkSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.BenchmarkSecurityIDSource getBenchmarkSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.BenchmarkSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.BenchmarkSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetBenchmarkSecurityIDSource() {
+ return isSetField(761);
+ }
+
+ public void set(quickfix.field.AvgPxIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.AvgPxIndicator get(quickfix.field.AvgPxIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AvgPxIndicator getAvgPxIndicator() throws FieldNotFound {
+ return get(new quickfix.field.AvgPxIndicator());
+ }
+
+ public boolean isSet(quickfix.field.AvgPxIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAvgPxIndicator() {
+ return isSetField(819);
+ }
+
+ public void set(quickfix.fix44.component.PositionAmountData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.PositionAmountData get(quickfix.fix44.component.PositionAmountData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.PositionAmountData getPositionAmountData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.PositionAmountData());
+ }
+
+ public void set(quickfix.field.NoPosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPosAmt get(quickfix.field.NoPosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPosAmt getNoPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.NoPosAmt());
+ }
+
+ public boolean isSet(quickfix.field.NoPosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPosAmt() {
+ return isSetField(753);
+ }
+
+ public static class NoPosAmt extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {707, 708, 0};
+
+ public NoPosAmt() {
+ super(753, 707, ORDER);
+ }
+
+ public void set(quickfix.field.PosAmtType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmtType get(quickfix.field.PosAmtType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmtType getPosAmtType() throws FieldNotFound {
+ return get(new quickfix.field.PosAmtType());
+ }
+
+ public boolean isSet(quickfix.field.PosAmtType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmtType() {
+ return isSetField(707);
+ }
+
+ public void set(quickfix.field.PosAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.PosAmt get(quickfix.field.PosAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PosAmt getPosAmt() throws FieldNotFound {
+ return get(new quickfix.field.PosAmt());
+ }
+
+ public boolean isSet(quickfix.field.PosAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPosAmt() {
+ return isSetField(708);
+ }
+
+ }
+
+ public void set(quickfix.field.MultiLegReportingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MultiLegReportingType get(quickfix.field.MultiLegReportingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MultiLegReportingType getMultiLegReportingType() throws FieldNotFound {
+ return get(new quickfix.field.MultiLegReportingType());
+ }
+
+ public boolean isSet(quickfix.field.MultiLegReportingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMultiLegReportingType() {
+ return isSetField(442);
+ }
+
+ public void set(quickfix.field.TradeLegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeLegRefID get(quickfix.field.TradeLegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeLegRefID getTradeLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.TradeLegRefID());
+ }
+
+ public boolean isSet(quickfix.field.TradeLegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeLegRefID() {
+ return isSetField(824);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 683, 564, 565, 539, 654, 566, 587, 588, 637, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.field.LegPositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPositionEffect get(quickfix.field.LegPositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPositionEffect getLegPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.LegPositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.LegPositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPositionEffect() {
+ return isSetField(564);
+ }
+
+ public void set(quickfix.field.LegCoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCoveredOrUncovered get(quickfix.field.LegCoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCoveredOrUncovered getLegCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.LegCoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.LegCoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCoveredOrUncovered() {
+ return isSetField(565);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRefID get(quickfix.field.LegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRefID getLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.LegRefID());
+ }
+
+ public boolean isSet(quickfix.field.LegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRefID() {
+ return isSetField(654);
+ }
+
+ public void set(quickfix.field.LegPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPrice get(quickfix.field.LegPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPrice getLegPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPrice() {
+ return isSetField(566);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.field.LegLastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLastPx get(quickfix.field.LegLastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLastPx getLegLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LegLastPx());
+ }
+
+ public boolean isSet(quickfix.field.LegLastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLastPx() {
+ return isSetField(637);
+ }
+
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.SettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlType get(quickfix.field.SettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlType getSettlType() throws FieldNotFound {
+ return get(new quickfix.field.SettlType());
+ }
+
+ public boolean isSet(quickfix.field.SettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlType() {
+ return isSetField(63);
+ }
+
+ public void set(quickfix.field.SettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlDate get(quickfix.field.SettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlDate getSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.SettlDate());
+ }
+
+ public boolean isSet(quickfix.field.SettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlDate() {
+ return isSetField(64);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.MatchType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchType get(quickfix.field.MatchType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchType getMatchType() throws FieldNotFound {
+ return get(new quickfix.field.MatchType());
+ }
+
+ public boolean isSet(quickfix.field.MatchType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchType() {
+ return isSetField(574);
+ }
+
+ public void set(quickfix.field.NoSides value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSides get(quickfix.field.NoSides value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSides getNoSides() throws FieldNotFound {
+ return get(new quickfix.field.NoSides());
+ }
+
+ public boolean isSet(quickfix.field.NoSides field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSides() {
+ return isSetField(552);
+ }
+
+ public static class NoSides extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {54, 37, 198, 11, 526, 66, 453, 1, 660, 581, 81, 575, 576, 635, 578, 579, 821, 15, 376, 377, 528, 529, 582, 40, 18, 483, 336, 625, 943, 12, 13, 479, 497, 381, 157, 230, 158, 159, 738, 920, 921, 922, 238, 237, 118, 119, 120, 155, 156, 77, 58, 354, 355, 752, 518, 232, 136, 825, 826, 591, 70, 78, 0};
+
+ public NoSides() {
+ super(552, 54, ORDER);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.SecondaryOrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryOrderID get(quickfix.field.SecondaryOrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryOrderID getSecondaryOrderID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryOrderID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryOrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryOrderID() {
+ return isSetField(198);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.SecondaryClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryClOrdID get(quickfix.field.SecondaryClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryClOrdID getSecondaryClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryClOrdID() {
+ return isSetField(526);
+ }
+
+ public void set(quickfix.field.ListID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ListID get(quickfix.field.ListID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ListID getListID() throws FieldNotFound {
+ return get(new quickfix.field.ListID());
+ }
+
+ public boolean isSet(quickfix.field.ListID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetListID() {
+ return isSetField(66);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.ProcessCode value) {
+ setField(value);
+ }
+
+ public quickfix.field.ProcessCode get(quickfix.field.ProcessCode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ProcessCode getProcessCode() throws FieldNotFound {
+ return get(new quickfix.field.ProcessCode());
+ }
+
+ public boolean isSet(quickfix.field.ProcessCode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProcessCode() {
+ return isSetField(81);
+ }
+
+ public void set(quickfix.field.OddLot value) {
+ setField(value);
+ }
+
+ public quickfix.field.OddLot get(quickfix.field.OddLot value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OddLot getOddLot() throws FieldNotFound {
+ return get(new quickfix.field.OddLot());
+ }
+
+ public boolean isSet(quickfix.field.OddLot field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOddLot() {
+ return isSetField(575);
+ }
+
+ public void set(quickfix.field.NoClearingInstructions value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoClearingInstructions get(quickfix.field.NoClearingInstructions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoClearingInstructions getNoClearingInstructions() throws FieldNotFound {
+ return get(new quickfix.field.NoClearingInstructions());
+ }
+
+ public boolean isSet(quickfix.field.NoClearingInstructions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoClearingInstructions() {
+ return isSetField(576);
+ }
+
+ public static class NoClearingInstructions extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {577, 0};
+
+ public NoClearingInstructions() {
+ super(576, 577, ORDER);
+ }
+
+ public void set(quickfix.field.ClearingInstruction value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingInstruction get(quickfix.field.ClearingInstruction value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingInstruction getClearingInstruction() throws FieldNotFound {
+ return get(new quickfix.field.ClearingInstruction());
+ }
+
+ public boolean isSet(quickfix.field.ClearingInstruction field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingInstruction() {
+ return isSetField(577);
+ }
+
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.TradeInputSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeInputSource get(quickfix.field.TradeInputSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeInputSource getTradeInputSource() throws FieldNotFound {
+ return get(new quickfix.field.TradeInputSource());
+ }
+
+ public boolean isSet(quickfix.field.TradeInputSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeInputSource() {
+ return isSetField(578);
+ }
+
+ public void set(quickfix.field.TradeInputDevice value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeInputDevice get(quickfix.field.TradeInputDevice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeInputDevice getTradeInputDevice() throws FieldNotFound {
+ return get(new quickfix.field.TradeInputDevice());
+ }
+
+ public boolean isSet(quickfix.field.TradeInputDevice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeInputDevice() {
+ return isSetField(579);
+ }
+
+ public void set(quickfix.field.OrderInputDevice value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderInputDevice get(quickfix.field.OrderInputDevice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderInputDevice getOrderInputDevice() throws FieldNotFound {
+ return get(new quickfix.field.OrderInputDevice());
+ }
+
+ public boolean isSet(quickfix.field.OrderInputDevice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderInputDevice() {
+ return isSetField(821);
+ }
+
+ public void set(quickfix.field.Currency value) {
+ setField(value);
+ }
+
+ public quickfix.field.Currency get(quickfix.field.Currency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Currency getCurrency() throws FieldNotFound {
+ return get(new quickfix.field.Currency());
+ }
+
+ public boolean isSet(quickfix.field.Currency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCurrency() {
+ return isSetField(15);
+ }
+
+ public void set(quickfix.field.ComplianceID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ComplianceID get(quickfix.field.ComplianceID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ComplianceID getComplianceID() throws FieldNotFound {
+ return get(new quickfix.field.ComplianceID());
+ }
+
+ public boolean isSet(quickfix.field.ComplianceID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetComplianceID() {
+ return isSetField(376);
+ }
+
+ public void set(quickfix.field.SolicitedFlag value) {
+ setField(value);
+ }
+
+ public quickfix.field.SolicitedFlag get(quickfix.field.SolicitedFlag value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SolicitedFlag getSolicitedFlag() throws FieldNotFound {
+ return get(new quickfix.field.SolicitedFlag());
+ }
+
+ public boolean isSet(quickfix.field.SolicitedFlag field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSolicitedFlag() {
+ return isSetField(377);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.OrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrdType get(quickfix.field.OrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrdType getOrdType() throws FieldNotFound {
+ return get(new quickfix.field.OrdType());
+ }
+
+ public boolean isSet(quickfix.field.OrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrdType() {
+ return isSetField(40);
+ }
+
+ public void set(quickfix.field.ExecInst value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecInst get(quickfix.field.ExecInst value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecInst getExecInst() throws FieldNotFound {
+ return get(new quickfix.field.ExecInst());
+ }
+
+ public boolean isSet(quickfix.field.ExecInst field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecInst() {
+ return isSetField(18);
+ }
+
+ public void set(quickfix.field.TransBkdTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransBkdTime get(quickfix.field.TransBkdTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransBkdTime getTransBkdTime() throws FieldNotFound {
+ return get(new quickfix.field.TransBkdTime());
+ }
+
+ public boolean isSet(quickfix.field.TransBkdTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransBkdTime() {
+ return isSetField(483);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.TimeBracket value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeBracket get(quickfix.field.TimeBracket value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeBracket getTimeBracket() throws FieldNotFound {
+ return get(new quickfix.field.TimeBracket());
+ }
+
+ public boolean isSet(quickfix.field.TimeBracket field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeBracket() {
+ return isSetField(943);
+ }
+
+ public void set(quickfix.fix44.component.CommissionData component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.CommissionData get(quickfix.fix44.component.CommissionData component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.CommissionData getCommissionData() throws FieldNotFound {
+ return get(new quickfix.fix44.component.CommissionData());
+ }
+
+ public void set(quickfix.field.Commission value) {
+ setField(value);
+ }
+
+ public quickfix.field.Commission get(quickfix.field.Commission value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Commission getCommission() throws FieldNotFound {
+ return get(new quickfix.field.Commission());
+ }
+
+ public boolean isSet(quickfix.field.Commission field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommission() {
+ return isSetField(12);
+ }
+
+ public void set(quickfix.field.CommType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommType get(quickfix.field.CommType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommType getCommType() throws FieldNotFound {
+ return get(new quickfix.field.CommType());
+ }
+
+ public boolean isSet(quickfix.field.CommType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommType() {
+ return isSetField(13);
+ }
+
+ public void set(quickfix.field.CommCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.CommCurrency get(quickfix.field.CommCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CommCurrency getCommCurrency() throws FieldNotFound {
+ return get(new quickfix.field.CommCurrency());
+ }
+
+ public boolean isSet(quickfix.field.CommCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCommCurrency() {
+ return isSetField(479);
+ }
+
+ public void set(quickfix.field.FundRenewWaiv value) {
+ setField(value);
+ }
+
+ public quickfix.field.FundRenewWaiv get(quickfix.field.FundRenewWaiv value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.FundRenewWaiv getFundRenewWaiv() throws FieldNotFound {
+ return get(new quickfix.field.FundRenewWaiv());
+ }
+
+ public boolean isSet(quickfix.field.FundRenewWaiv field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFundRenewWaiv() {
+ return isSetField(497);
+ }
+
+ public void set(quickfix.field.GrossTradeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.GrossTradeAmt get(quickfix.field.GrossTradeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.GrossTradeAmt getGrossTradeAmt() throws FieldNotFound {
+ return get(new quickfix.field.GrossTradeAmt());
+ }
+
+ public boolean isSet(quickfix.field.GrossTradeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetGrossTradeAmt() {
+ return isSetField(381);
+ }
+
+ public void set(quickfix.field.NumDaysInterest value) {
+ setField(value);
+ }
+
+ public quickfix.field.NumDaysInterest get(quickfix.field.NumDaysInterest value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NumDaysInterest getNumDaysInterest() throws FieldNotFound {
+ return get(new quickfix.field.NumDaysInterest());
+ }
+
+ public boolean isSet(quickfix.field.NumDaysInterest field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNumDaysInterest() {
+ return isSetField(157);
+ }
+
+ public void set(quickfix.field.ExDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExDate get(quickfix.field.ExDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExDate getExDate() throws FieldNotFound {
+ return get(new quickfix.field.ExDate());
+ }
+
+ public boolean isSet(quickfix.field.ExDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExDate() {
+ return isSetField(230);
+ }
+
+ public void set(quickfix.field.AccruedInterestRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestRate get(quickfix.field.AccruedInterestRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestRate getAccruedInterestRate() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestRate());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestRate() {
+ return isSetField(158);
+ }
+
+ public void set(quickfix.field.AccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccruedInterestAmt get(quickfix.field.AccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccruedInterestAmt getAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.AccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.AccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccruedInterestAmt() {
+ return isSetField(159);
+ }
+
+ public void set(quickfix.field.InterestAtMaturity value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAtMaturity get(quickfix.field.InterestAtMaturity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAtMaturity getInterestAtMaturity() throws FieldNotFound {
+ return get(new quickfix.field.InterestAtMaturity());
+ }
+
+ public boolean isSet(quickfix.field.InterestAtMaturity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAtMaturity() {
+ return isSetField(738);
+ }
+
+ public void set(quickfix.field.EndAccruedInterestAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndAccruedInterestAmt get(quickfix.field.EndAccruedInterestAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndAccruedInterestAmt getEndAccruedInterestAmt() throws FieldNotFound {
+ return get(new quickfix.field.EndAccruedInterestAmt());
+ }
+
+ public boolean isSet(quickfix.field.EndAccruedInterestAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndAccruedInterestAmt() {
+ return isSetField(920);
+ }
+
+ public void set(quickfix.field.StartCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartCash get(quickfix.field.StartCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartCash getStartCash() throws FieldNotFound {
+ return get(new quickfix.field.StartCash());
+ }
+
+ public boolean isSet(quickfix.field.StartCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartCash() {
+ return isSetField(921);
+ }
+
+ public void set(quickfix.field.EndCash value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndCash get(quickfix.field.EndCash value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndCash getEndCash() throws FieldNotFound {
+ return get(new quickfix.field.EndCash());
+ }
+
+ public boolean isSet(quickfix.field.EndCash field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndCash() {
+ return isSetField(922);
+ }
+
+ public void set(quickfix.field.Concession value) {
+ setField(value);
+ }
+
+ public quickfix.field.Concession get(quickfix.field.Concession value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Concession getConcession() throws FieldNotFound {
+ return get(new quickfix.field.Concession());
+ }
+
+ public boolean isSet(quickfix.field.Concession field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetConcession() {
+ return isSetField(238);
+ }
+
+ public void set(quickfix.field.TotalTakedown value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotalTakedown get(quickfix.field.TotalTakedown value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotalTakedown getTotalTakedown() throws FieldNotFound {
+ return get(new quickfix.field.TotalTakedown());
+ }
+
+ public boolean isSet(quickfix.field.TotalTakedown field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotalTakedown() {
+ return isSetField(237);
+ }
+
+ public void set(quickfix.field.NetMoney value) {
+ setField(value);
+ }
+
+ public quickfix.field.NetMoney get(quickfix.field.NetMoney value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NetMoney getNetMoney() throws FieldNotFound {
+ return get(new quickfix.field.NetMoney());
+ }
+
+ public boolean isSet(quickfix.field.NetMoney field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNetMoney() {
+ return isSetField(118);
+ }
+
+ public void set(quickfix.field.SettlCurrAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrAmt get(quickfix.field.SettlCurrAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrAmt getSettlCurrAmt() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrAmt());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrAmt() {
+ return isSetField(119);
+ }
+
+ public void set(quickfix.field.SettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrency get(quickfix.field.SettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrency getSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrency() {
+ return isSetField(120);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRate get(quickfix.field.SettlCurrFxRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRate getSettlCurrFxRate() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRate());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRate() {
+ return isSetField(155);
+ }
+
+ public void set(quickfix.field.SettlCurrFxRateCalc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc get(quickfix.field.SettlCurrFxRateCalc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SettlCurrFxRateCalc getSettlCurrFxRateCalc() throws FieldNotFound {
+ return get(new quickfix.field.SettlCurrFxRateCalc());
+ }
+
+ public boolean isSet(quickfix.field.SettlCurrFxRateCalc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSettlCurrFxRateCalc() {
+ return isSetField(156);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.SideMultiLegReportingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SideMultiLegReportingType get(quickfix.field.SideMultiLegReportingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SideMultiLegReportingType getSideMultiLegReportingType() throws FieldNotFound {
+ return get(new quickfix.field.SideMultiLegReportingType());
+ }
+
+ public boolean isSet(quickfix.field.SideMultiLegReportingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSideMultiLegReportingType() {
+ return isSetField(752);
+ }
+
+ public void set(quickfix.field.NoContAmts value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoContAmts get(quickfix.field.NoContAmts value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoContAmts getNoContAmts() throws FieldNotFound {
+ return get(new quickfix.field.NoContAmts());
+ }
+
+ public boolean isSet(quickfix.field.NoContAmts field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoContAmts() {
+ return isSetField(518);
+ }
+
+ public static class NoContAmts extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {519, 520, 521, 0};
+
+ public NoContAmts() {
+ super(518, 519, ORDER);
+ }
+
+ public void set(quickfix.field.ContAmtType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContAmtType get(quickfix.field.ContAmtType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContAmtType getContAmtType() throws FieldNotFound {
+ return get(new quickfix.field.ContAmtType());
+ }
+
+ public boolean isSet(quickfix.field.ContAmtType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContAmtType() {
+ return isSetField(519);
+ }
+
+ public void set(quickfix.field.ContAmtValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContAmtValue get(quickfix.field.ContAmtValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContAmtValue getContAmtValue() throws FieldNotFound {
+ return get(new quickfix.field.ContAmtValue());
+ }
+
+ public boolean isSet(quickfix.field.ContAmtValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContAmtValue() {
+ return isSetField(520);
+ }
+
+ public void set(quickfix.field.ContAmtCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContAmtCurr get(quickfix.field.ContAmtCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContAmtCurr getContAmtCurr() throws FieldNotFound {
+ return get(new quickfix.field.ContAmtCurr());
+ }
+
+ public boolean isSet(quickfix.field.ContAmtCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContAmtCurr() {
+ return isSetField(521);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Stipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Stipulations get(quickfix.fix44.component.Stipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Stipulations getStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Stipulations());
+ }
+
+ public void set(quickfix.field.NoStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoStipulations get(quickfix.field.NoStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoStipulations getNoStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoStipulations() {
+ return isSetField(232);
+ }
+
+ public static class NoStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {233, 234, 0};
+
+ public NoStipulations() {
+ super(232, 233, ORDER);
+ }
+
+ public void set(quickfix.field.StipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationType get(quickfix.field.StipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationType getStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.StipulationType());
+ }
+
+ public boolean isSet(quickfix.field.StipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationType() {
+ return isSetField(233);
+ }
+
+ public void set(quickfix.field.StipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StipulationValue get(quickfix.field.StipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StipulationValue getStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.StipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.StipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStipulationValue() {
+ return isSetField(234);
+ }
+
+ }
+
+ public void set(quickfix.field.NoMiscFees value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoMiscFees get(quickfix.field.NoMiscFees value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoMiscFees getNoMiscFees() throws FieldNotFound {
+ return get(new quickfix.field.NoMiscFees());
+ }
+
+ public boolean isSet(quickfix.field.NoMiscFees field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoMiscFees() {
+ return isSetField(136);
+ }
+
+ public static class NoMiscFees extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {137, 138, 139, 891, 0};
+
+ public NoMiscFees() {
+ super(136, 137, ORDER);
+ }
+
+ public void set(quickfix.field.MiscFeeAmt value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeAmt get(quickfix.field.MiscFeeAmt value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeAmt getMiscFeeAmt() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeAmt());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeAmt field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeAmt() {
+ return isSetField(137);
+ }
+
+ public void set(quickfix.field.MiscFeeCurr value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeCurr get(quickfix.field.MiscFeeCurr value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeCurr getMiscFeeCurr() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeCurr());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeCurr field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeCurr() {
+ return isSetField(138);
+ }
+
+ public void set(quickfix.field.MiscFeeType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeType get(quickfix.field.MiscFeeType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeType getMiscFeeType() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeType());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeType() {
+ return isSetField(139);
+ }
+
+ public void set(quickfix.field.MiscFeeBasis value) {
+ setField(value);
+ }
+
+ public quickfix.field.MiscFeeBasis get(quickfix.field.MiscFeeBasis value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MiscFeeBasis getMiscFeeBasis() throws FieldNotFound {
+ return get(new quickfix.field.MiscFeeBasis());
+ }
+
+ public boolean isSet(quickfix.field.MiscFeeBasis field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMiscFeeBasis() {
+ return isSetField(891);
+ }
+
+ }
+
+ public void set(quickfix.field.ExchangeRule value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExchangeRule get(quickfix.field.ExchangeRule value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExchangeRule getExchangeRule() throws FieldNotFound {
+ return get(new quickfix.field.ExchangeRule());
+ }
+
+ public boolean isSet(quickfix.field.ExchangeRule field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExchangeRule() {
+ return isSetField(825);
+ }
+
+ public void set(quickfix.field.TradeAllocIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeAllocIndicator get(quickfix.field.TradeAllocIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeAllocIndicator getTradeAllocIndicator() throws FieldNotFound {
+ return get(new quickfix.field.TradeAllocIndicator());
+ }
+
+ public boolean isSet(quickfix.field.TradeAllocIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeAllocIndicator() {
+ return isSetField(826);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.AllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocID get(quickfix.field.AllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocID getAllocID() throws FieldNotFound {
+ return get(new quickfix.field.AllocID());
+ }
+
+ public boolean isSet(quickfix.field.AllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocID() {
+ return isSetField(70);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 756, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.CopyMsgIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.CopyMsgIndicator get(quickfix.field.CopyMsgIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CopyMsgIndicator getCopyMsgIndicator() throws FieldNotFound {
+ return get(new quickfix.field.CopyMsgIndicator());
+ }
+
+ public boolean isSet(quickfix.field.CopyMsgIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCopyMsgIndicator() {
+ return isSetField(797);
+ }
+
+ public void set(quickfix.field.PublishTrdIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.PublishTrdIndicator get(quickfix.field.PublishTrdIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PublishTrdIndicator getPublishTrdIndicator() throws FieldNotFound {
+ return get(new quickfix.field.PublishTrdIndicator());
+ }
+
+ public boolean isSet(quickfix.field.PublishTrdIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPublishTrdIndicator() {
+ return isSetField(852);
+ }
+
+ public void set(quickfix.field.ShortSaleReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.ShortSaleReason get(quickfix.field.ShortSaleReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ShortSaleReason getShortSaleReason() throws FieldNotFound {
+ return get(new quickfix.field.ShortSaleReason());
+ }
+
+ public boolean isSet(quickfix.field.ShortSaleReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetShortSaleReason() {
+ return isSetField(853);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportAck.java
new file mode 100644
index 000000000..c5f6f0a93
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportAck.java
@@ -0,0 +1,3649 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class TradeCaptureReportAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AR";
+
+
+ public TradeCaptureReportAck() {
+
+ super(new int[] {571, 487, 856, 828, 829, 855, 830, 150, 572, 881, 939, 751, 818, 263, 820, 880, 17, 527, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 60, 768, 725, 726, 58, 354, 355, 555, 635, 528, 529, 582, 1, 660, 581, 77, 591, 78, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TradeCaptureReportAck(quickfix.field.TradeReportID tradeReportID, quickfix.field.ExecType execType) {
+ this();
+ setField(tradeReportID);
+ setField(execType);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.TradeReportTransType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportTransType get(quickfix.field.TradeReportTransType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportTransType getTradeReportTransType() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportTransType());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportTransType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportTransType() {
+ return isSetField(487);
+ }
+
+ public void set(quickfix.field.TradeReportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportType get(quickfix.field.TradeReportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportType getTradeReportType() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportType());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportType() {
+ return isSetField(856);
+ }
+
+ public void set(quickfix.field.TrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdType get(quickfix.field.TrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdType getTrdType() throws FieldNotFound {
+ return get(new quickfix.field.TrdType());
+ }
+
+ public boolean isSet(quickfix.field.TrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdType() {
+ return isSetField(828);
+ }
+
+ public void set(quickfix.field.TrdSubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdSubType get(quickfix.field.TrdSubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdSubType getTrdSubType() throws FieldNotFound {
+ return get(new quickfix.field.TrdSubType());
+ }
+
+ public boolean isSet(quickfix.field.TrdSubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdSubType() {
+ return isSetField(829);
+ }
+
+ public void set(quickfix.field.SecondaryTrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTrdType get(quickfix.field.SecondaryTrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTrdType getSecondaryTrdType() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTrdType());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTrdType() {
+ return isSetField(855);
+ }
+
+ public void set(quickfix.field.TransferReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransferReason get(quickfix.field.TransferReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransferReason getTransferReason() throws FieldNotFound {
+ return get(new quickfix.field.TransferReason());
+ }
+
+ public boolean isSet(quickfix.field.TransferReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransferReason() {
+ return isSetField(830);
+ }
+
+ public void set(quickfix.field.ExecType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecType get(quickfix.field.ExecType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecType getExecType() throws FieldNotFound {
+ return get(new quickfix.field.ExecType());
+ }
+
+ public boolean isSet(quickfix.field.ExecType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecType() {
+ return isSetField(150);
+ }
+
+ public void set(quickfix.field.TradeReportRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportRefID get(quickfix.field.TradeReportRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportRefID getTradeReportRefID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportRefID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportRefID() {
+ return isSetField(572);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportRefID get(quickfix.field.SecondaryTradeReportRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportRefID getSecondaryTradeReportRefID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportRefID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportRefID() {
+ return isSetField(881);
+ }
+
+ public void set(quickfix.field.TrdRptStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRptStatus get(quickfix.field.TrdRptStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRptStatus getTrdRptStatus() throws FieldNotFound {
+ return get(new quickfix.field.TrdRptStatus());
+ }
+
+ public boolean isSet(quickfix.field.TrdRptStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRptStatus() {
+ return isSetField(939);
+ }
+
+ public void set(quickfix.field.TradeReportRejectReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportRejectReason get(quickfix.field.TradeReportRejectReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportRejectReason getTradeReportRejectReason() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportRejectReason());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportRejectReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportRejectReason() {
+ return isSetField(751);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TradeLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeLinkID get(quickfix.field.TradeLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeLinkID getTradeLinkID() throws FieldNotFound {
+ return get(new quickfix.field.TradeLinkID());
+ }
+
+ public boolean isSet(quickfix.field.TradeLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeLinkID() {
+ return isSetField(820);
+ }
+
+ public void set(quickfix.field.TrdMatchID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdMatchID get(quickfix.field.TrdMatchID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdMatchID getTrdMatchID() throws FieldNotFound {
+ return get(new quickfix.field.TrdMatchID());
+ }
+
+ public boolean isSet(quickfix.field.TrdMatchID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdMatchID() {
+ return isSetField(880);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.SecondaryExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryExecID get(quickfix.field.SecondaryExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryExecID getSecondaryExecID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryExecID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryExecID() {
+ return isSetField(527);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ public void set(quickfix.fix44.component.TrdRegTimestamps component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps get(quickfix.fix44.component.TrdRegTimestamps component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.TrdRegTimestamps getTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.fix44.component.TrdRegTimestamps());
+ }
+
+ public void set(quickfix.field.NoTrdRegTimestamps value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoTrdRegTimestamps get(quickfix.field.NoTrdRegTimestamps value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoTrdRegTimestamps getNoTrdRegTimestamps() throws FieldNotFound {
+ return get(new quickfix.field.NoTrdRegTimestamps());
+ }
+
+ public boolean isSet(quickfix.field.NoTrdRegTimestamps field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoTrdRegTimestamps() {
+ return isSetField(768);
+ }
+
+ public static class NoTrdRegTimestamps extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {769, 770, 771, 0};
+
+ public NoTrdRegTimestamps() {
+ super(768, 769, ORDER);
+ }
+
+ public void set(quickfix.field.TrdRegTimestamp value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestamp get(quickfix.field.TrdRegTimestamp value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestamp getTrdRegTimestamp() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestamp());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestamp field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestamp() {
+ return isSetField(769);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampType get(quickfix.field.TrdRegTimestampType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampType getTrdRegTimestampType() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampType());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampType() {
+ return isSetField(770);
+ }
+
+ public void set(quickfix.field.TrdRegTimestampOrigin value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin get(quickfix.field.TrdRegTimestampOrigin value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdRegTimestampOrigin getTrdRegTimestampOrigin() throws FieldNotFound {
+ return get(new quickfix.field.TrdRegTimestampOrigin());
+ }
+
+ public boolean isSet(quickfix.field.TrdRegTimestampOrigin field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdRegTimestampOrigin() {
+ return isSetField(771);
+ }
+
+ }
+
+ public void set(quickfix.field.ResponseTransportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseTransportType get(quickfix.field.ResponseTransportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseTransportType getResponseTransportType() throws FieldNotFound {
+ return get(new quickfix.field.ResponseTransportType());
+ }
+
+ public boolean isSet(quickfix.field.ResponseTransportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseTransportType() {
+ return isSetField(725);
+ }
+
+ public void set(quickfix.field.ResponseDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseDestination get(quickfix.field.ResponseDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseDestination getResponseDestination() throws FieldNotFound {
+ return get(new quickfix.field.ResponseDestination());
+ }
+
+ public boolean isSet(quickfix.field.ResponseDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseDestination() {
+ return isSetField(726);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 687, 690, 683, 564, 565, 539, 654, 566, 587, 588, 637, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ public void set(quickfix.field.LegQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegQty get(quickfix.field.LegQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegQty getLegQty() throws FieldNotFound {
+ return get(new quickfix.field.LegQty());
+ }
+
+ public boolean isSet(quickfix.field.LegQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegQty() {
+ return isSetField(687);
+ }
+
+ public void set(quickfix.field.LegSwapType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSwapType get(quickfix.field.LegSwapType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSwapType getLegSwapType() throws FieldNotFound {
+ return get(new quickfix.field.LegSwapType());
+ }
+
+ public boolean isSet(quickfix.field.LegSwapType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSwapType() {
+ return isSetField(690);
+ }
+
+ public void set(quickfix.fix44.component.LegStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.LegStipulations get(quickfix.fix44.component.LegStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.LegStipulations getLegStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.LegStipulations());
+ }
+
+ public void set(quickfix.field.NoLegStipulations value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegStipulations get(quickfix.field.NoLegStipulations value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegStipulations getNoLegStipulations() throws FieldNotFound {
+ return get(new quickfix.field.NoLegStipulations());
+ }
+
+ public boolean isSet(quickfix.field.NoLegStipulations field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegStipulations() {
+ return isSetField(683);
+ }
+
+ public static class NoLegStipulations extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {688, 689, 0};
+
+ public NoLegStipulations() {
+ super(683, 688, ORDER);
+ }
+
+ public void set(quickfix.field.LegStipulationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationType get(quickfix.field.LegStipulationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationType getLegStipulationType() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationType());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationType() {
+ return isSetField(688);
+ }
+
+ public void set(quickfix.field.LegStipulationValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStipulationValue get(quickfix.field.LegStipulationValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStipulationValue getLegStipulationValue() throws FieldNotFound {
+ return get(new quickfix.field.LegStipulationValue());
+ }
+
+ public boolean isSet(quickfix.field.LegStipulationValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStipulationValue() {
+ return isSetField(689);
+ }
+
+ }
+
+ public void set(quickfix.field.LegPositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPositionEffect get(quickfix.field.LegPositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPositionEffect getLegPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.LegPositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.LegPositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPositionEffect() {
+ return isSetField(564);
+ }
+
+ public void set(quickfix.field.LegCoveredOrUncovered value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCoveredOrUncovered get(quickfix.field.LegCoveredOrUncovered value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCoveredOrUncovered getLegCoveredOrUncovered() throws FieldNotFound {
+ return get(new quickfix.field.LegCoveredOrUncovered());
+ }
+
+ public boolean isSet(quickfix.field.LegCoveredOrUncovered field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCoveredOrUncovered() {
+ return isSetField(565);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties get(quickfix.fix44.component.NestedParties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties getNestedParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties());
+ }
+
+ public void set(quickfix.field.NoNestedPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartyIDs get(quickfix.field.NoNestedPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartyIDs getNoNestedPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartyIDs() {
+ return isSetField(539);
+ }
+
+ public static class NoNestedPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {524, 525, 538, 804, 0};
+
+ public NoNestedPartyIDs() {
+ super(539, 524, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyID get(quickfix.field.NestedPartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyID getNestedPartyID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyID() {
+ return isSetField(524);
+ }
+
+ public void set(quickfix.field.NestedPartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyIDSource get(quickfix.field.NestedPartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyIDSource getNestedPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyIDSource() {
+ return isSetField(525);
+ }
+
+ public void set(quickfix.field.NestedPartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartyRole get(quickfix.field.NestedPartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartyRole getNestedPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartyRole());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartyRole() {
+ return isSetField(538);
+ }
+
+ public void set(quickfix.field.NoNestedPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNestedPartySubIDs get(quickfix.field.NoNestedPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNestedPartySubIDs getNoNestedPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNestedPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNestedPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNestedPartySubIDs() {
+ return isSetField(804);
+ }
+
+ public static class NoNestedPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {545, 805, 0};
+
+ public NoNestedPartySubIDs() {
+ super(804, 545, ORDER);
+ }
+
+ public void set(quickfix.field.NestedPartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubID get(quickfix.field.NestedPartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubID getNestedPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubID());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubID() {
+ return isSetField(545);
+ }
+
+ public void set(quickfix.field.NestedPartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.NestedPartySubIDType get(quickfix.field.NestedPartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NestedPartySubIDType getNestedPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.NestedPartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.NestedPartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNestedPartySubIDType() {
+ return isSetField(805);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.LegRefID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRefID get(quickfix.field.LegRefID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRefID getLegRefID() throws FieldNotFound {
+ return get(new quickfix.field.LegRefID());
+ }
+
+ public boolean isSet(quickfix.field.LegRefID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRefID() {
+ return isSetField(654);
+ }
+
+ public void set(quickfix.field.LegPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPrice get(quickfix.field.LegPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPrice getLegPrice() throws FieldNotFound {
+ return get(new quickfix.field.LegPrice());
+ }
+
+ public boolean isSet(quickfix.field.LegPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPrice() {
+ return isSetField(566);
+ }
+
+ public void set(quickfix.field.LegSettlType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlType get(quickfix.field.LegSettlType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlType getLegSettlType() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlType());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlType() {
+ return isSetField(587);
+ }
+
+ public void set(quickfix.field.LegSettlDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSettlDate get(quickfix.field.LegSettlDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSettlDate getLegSettlDate() throws FieldNotFound {
+ return get(new quickfix.field.LegSettlDate());
+ }
+
+ public boolean isSet(quickfix.field.LegSettlDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSettlDate() {
+ return isSetField(588);
+ }
+
+ public void set(quickfix.field.LegLastPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLastPx get(quickfix.field.LegLastPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLastPx getLegLastPx() throws FieldNotFound {
+ return get(new quickfix.field.LegLastPx());
+ }
+
+ public boolean isSet(quickfix.field.LegLastPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLastPx() {
+ return isSetField(637);
+ }
+
+ }
+
+ public void set(quickfix.field.ClearingFeeIndicator value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingFeeIndicator get(quickfix.field.ClearingFeeIndicator value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingFeeIndicator getClearingFeeIndicator() throws FieldNotFound {
+ return get(new quickfix.field.ClearingFeeIndicator());
+ }
+
+ public boolean isSet(quickfix.field.ClearingFeeIndicator field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingFeeIndicator() {
+ return isSetField(635);
+ }
+
+ public void set(quickfix.field.OrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderCapacity get(quickfix.field.OrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderCapacity getOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.OrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.OrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderCapacity() {
+ return isSetField(528);
+ }
+
+ public void set(quickfix.field.OrderRestrictions value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderRestrictions get(quickfix.field.OrderRestrictions value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderRestrictions getOrderRestrictions() throws FieldNotFound {
+ return get(new quickfix.field.OrderRestrictions());
+ }
+
+ public boolean isSet(quickfix.field.OrderRestrictions field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderRestrictions() {
+ return isSetField(529);
+ }
+
+ public void set(quickfix.field.CustOrderCapacity value) {
+ setField(value);
+ }
+
+ public quickfix.field.CustOrderCapacity get(quickfix.field.CustOrderCapacity value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CustOrderCapacity getCustOrderCapacity() throws FieldNotFound {
+ return get(new quickfix.field.CustOrderCapacity());
+ }
+
+ public boolean isSet(quickfix.field.CustOrderCapacity field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCustOrderCapacity() {
+ return isSetField(582);
+ }
+
+ public void set(quickfix.field.Account value) {
+ setField(value);
+ }
+
+ public quickfix.field.Account get(quickfix.field.Account value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Account getAccount() throws FieldNotFound {
+ return get(new quickfix.field.Account());
+ }
+
+ public boolean isSet(quickfix.field.Account field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccount() {
+ return isSetField(1);
+ }
+
+ public void set(quickfix.field.AcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AcctIDSource get(quickfix.field.AcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AcctIDSource getAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAcctIDSource() {
+ return isSetField(660);
+ }
+
+ public void set(quickfix.field.AccountType value) {
+ setField(value);
+ }
+
+ public quickfix.field.AccountType get(quickfix.field.AccountType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AccountType getAccountType() throws FieldNotFound {
+ return get(new quickfix.field.AccountType());
+ }
+
+ public boolean isSet(quickfix.field.AccountType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAccountType() {
+ return isSetField(581);
+ }
+
+ public void set(quickfix.field.PositionEffect value) {
+ setField(value);
+ }
+
+ public quickfix.field.PositionEffect get(quickfix.field.PositionEffect value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PositionEffect getPositionEffect() throws FieldNotFound {
+ return get(new quickfix.field.PositionEffect());
+ }
+
+ public boolean isSet(quickfix.field.PositionEffect field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPositionEffect() {
+ return isSetField(77);
+ }
+
+ public void set(quickfix.field.PreallocMethod value) {
+ setField(value);
+ }
+
+ public quickfix.field.PreallocMethod get(quickfix.field.PreallocMethod value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PreallocMethod getPreallocMethod() throws FieldNotFound {
+ return get(new quickfix.field.PreallocMethod());
+ }
+
+ public boolean isSet(quickfix.field.PreallocMethod field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPreallocMethod() {
+ return isSetField(591);
+ }
+
+ public void set(quickfix.field.NoAllocs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoAllocs get(quickfix.field.NoAllocs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoAllocs getNoAllocs() throws FieldNotFound {
+ return get(new quickfix.field.NoAllocs());
+ }
+
+ public boolean isSet(quickfix.field.NoAllocs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoAllocs() {
+ return isSetField(78);
+ }
+
+ public static class NoAllocs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {79, 661, 736, 467, 756, 80, 0};
+
+ public NoAllocs() {
+ super(78, 79, ORDER);
+ }
+
+ public void set(quickfix.field.AllocAccount value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAccount get(quickfix.field.AllocAccount value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAccount getAllocAccount() throws FieldNotFound {
+ return get(new quickfix.field.AllocAccount());
+ }
+
+ public boolean isSet(quickfix.field.AllocAccount field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAccount() {
+ return isSetField(79);
+ }
+
+ public void set(quickfix.field.AllocAcctIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocAcctIDSource get(quickfix.field.AllocAcctIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocAcctIDSource getAllocAcctIDSource() throws FieldNotFound {
+ return get(new quickfix.field.AllocAcctIDSource());
+ }
+
+ public boolean isSet(quickfix.field.AllocAcctIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocAcctIDSource() {
+ return isSetField(661);
+ }
+
+ public void set(quickfix.field.AllocSettlCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocSettlCurrency get(quickfix.field.AllocSettlCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocSettlCurrency getAllocSettlCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AllocSettlCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AllocSettlCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocSettlCurrency() {
+ return isSetField(736);
+ }
+
+ public void set(quickfix.field.IndividualAllocID value) {
+ setField(value);
+ }
+
+ public quickfix.field.IndividualAllocID get(quickfix.field.IndividualAllocID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IndividualAllocID getIndividualAllocID() throws FieldNotFound {
+ return get(new quickfix.field.IndividualAllocID());
+ }
+
+ public boolean isSet(quickfix.field.IndividualAllocID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIndividualAllocID() {
+ return isSetField(467);
+ }
+
+ public void set(quickfix.fix44.component.NestedParties2 component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.NestedParties2 get(quickfix.fix44.component.NestedParties2 component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.NestedParties2 getNestedParties2() throws FieldNotFound {
+ return get(new quickfix.fix44.component.NestedParties2());
+ }
+
+ public void set(quickfix.field.NoNested2PartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartyIDs get(quickfix.field.NoNested2PartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartyIDs getNoNested2PartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartyIDs() {
+ return isSetField(756);
+ }
+
+ public static class NoNested2PartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {757, 758, 759, 806, 0};
+
+ public NoNested2PartyIDs() {
+ super(756, 757, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyID get(quickfix.field.Nested2PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyID getNested2PartyID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyID() {
+ return isSetField(757);
+ }
+
+ public void set(quickfix.field.Nested2PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyIDSource get(quickfix.field.Nested2PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyIDSource getNested2PartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyIDSource() {
+ return isSetField(758);
+ }
+
+ public void set(quickfix.field.Nested2PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartyRole get(quickfix.field.Nested2PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartyRole getNested2PartyRole() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartyRole() {
+ return isSetField(759);
+ }
+
+ public void set(quickfix.field.NoNested2PartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoNested2PartySubIDs get(quickfix.field.NoNested2PartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoNested2PartySubIDs getNoNested2PartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoNested2PartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoNested2PartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoNested2PartySubIDs() {
+ return isSetField(806);
+ }
+
+ public static class NoNested2PartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {760, 807, 0};
+
+ public NoNested2PartySubIDs() {
+ super(806, 760, ORDER);
+ }
+
+ public void set(quickfix.field.Nested2PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubID get(quickfix.field.Nested2PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubID getNested2PartySubID() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubID() {
+ return isSetField(760);
+ }
+
+ public void set(quickfix.field.Nested2PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.Nested2PartySubIDType get(quickfix.field.Nested2PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Nested2PartySubIDType getNested2PartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.Nested2PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.Nested2PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNested2PartySubIDType() {
+ return isSetField(807);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.AllocQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.AllocQty get(quickfix.field.AllocQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AllocQty getAllocQty() throws FieldNotFound {
+ return get(new quickfix.field.AllocQty());
+ }
+
+ public boolean isSet(quickfix.field.AllocQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAllocQty() {
+ return isSetField(80);
+ }
+
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportRequest.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportRequest.java
new file mode 100644
index 000000000..c776a67f1
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportRequest.java
@@ -0,0 +1,4418 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class TradeCaptureReportRequest extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AD";
+
+
+ public TradeCaptureReportRequest() {
+
+ super(new int[] {568, 569, 263, 571, 818, 17, 150, 37, 11, 573, 828, 829, 830, 855, 820, 880, 453, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 668, 869, 870, 913, 914, 915, 918, 788, 916, 917, 919, 898, 711, 555, 580, 715, 336, 625, 943, 54, 442, 578, 579, 725, 726, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TradeCaptureReportRequest(quickfix.field.TradeRequestID tradeRequestID, quickfix.field.TradeRequestType tradeRequestType) {
+ this();
+ setField(tradeRequestID);
+ setField(tradeRequestType);
+ }
+
+ public void set(quickfix.field.TradeRequestID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestID get(quickfix.field.TradeRequestID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestID getTradeRequestID() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestID());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestID() {
+ return isSetField(568);
+ }
+
+ public void set(quickfix.field.TradeRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestType get(quickfix.field.TradeRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestType getTradeRequestType() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestType());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestType() {
+ return isSetField(569);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeReportID get(quickfix.field.TradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeReportID getTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.TradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.TradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeReportID() {
+ return isSetField(571);
+ }
+
+ public void set(quickfix.field.SecondaryTradeReportID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTradeReportID get(quickfix.field.SecondaryTradeReportID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTradeReportID getSecondaryTradeReportID() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTradeReportID());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTradeReportID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTradeReportID() {
+ return isSetField(818);
+ }
+
+ public void set(quickfix.field.ExecID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecID get(quickfix.field.ExecID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecID getExecID() throws FieldNotFound {
+ return get(new quickfix.field.ExecID());
+ }
+
+ public boolean isSet(quickfix.field.ExecID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecID() {
+ return isSetField(17);
+ }
+
+ public void set(quickfix.field.ExecType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ExecType get(quickfix.field.ExecType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ExecType getExecType() throws FieldNotFound {
+ return get(new quickfix.field.ExecType());
+ }
+
+ public boolean isSet(quickfix.field.ExecType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetExecType() {
+ return isSetField(150);
+ }
+
+ public void set(quickfix.field.OrderID value) {
+ setField(value);
+ }
+
+ public quickfix.field.OrderID get(quickfix.field.OrderID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OrderID getOrderID() throws FieldNotFound {
+ return get(new quickfix.field.OrderID());
+ }
+
+ public boolean isSet(quickfix.field.OrderID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOrderID() {
+ return isSetField(37);
+ }
+
+ public void set(quickfix.field.ClOrdID value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClOrdID get(quickfix.field.ClOrdID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClOrdID getClOrdID() throws FieldNotFound {
+ return get(new quickfix.field.ClOrdID());
+ }
+
+ public boolean isSet(quickfix.field.ClOrdID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClOrdID() {
+ return isSetField(11);
+ }
+
+ public void set(quickfix.field.MatchStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.MatchStatus get(quickfix.field.MatchStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MatchStatus getMatchStatus() throws FieldNotFound {
+ return get(new quickfix.field.MatchStatus());
+ }
+
+ public boolean isSet(quickfix.field.MatchStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMatchStatus() {
+ return isSetField(573);
+ }
+
+ public void set(quickfix.field.TrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdType get(quickfix.field.TrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdType getTrdType() throws FieldNotFound {
+ return get(new quickfix.field.TrdType());
+ }
+
+ public boolean isSet(quickfix.field.TrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdType() {
+ return isSetField(828);
+ }
+
+ public void set(quickfix.field.TrdSubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdSubType get(quickfix.field.TrdSubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdSubType getTrdSubType() throws FieldNotFound {
+ return get(new quickfix.field.TrdSubType());
+ }
+
+ public boolean isSet(quickfix.field.TrdSubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdSubType() {
+ return isSetField(829);
+ }
+
+ public void set(quickfix.field.TransferReason value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransferReason get(quickfix.field.TransferReason value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransferReason getTransferReason() throws FieldNotFound {
+ return get(new quickfix.field.TransferReason());
+ }
+
+ public boolean isSet(quickfix.field.TransferReason field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransferReason() {
+ return isSetField(830);
+ }
+
+ public void set(quickfix.field.SecondaryTrdType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecondaryTrdType get(quickfix.field.SecondaryTrdType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecondaryTrdType getSecondaryTrdType() throws FieldNotFound {
+ return get(new quickfix.field.SecondaryTrdType());
+ }
+
+ public boolean isSet(quickfix.field.SecondaryTrdType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecondaryTrdType() {
+ return isSetField(855);
+ }
+
+ public void set(quickfix.field.TradeLinkID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeLinkID get(quickfix.field.TradeLinkID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeLinkID getTradeLinkID() throws FieldNotFound {
+ return get(new quickfix.field.TradeLinkID());
+ }
+
+ public boolean isSet(quickfix.field.TradeLinkID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeLinkID() {
+ return isSetField(820);
+ }
+
+ public void set(quickfix.field.TrdMatchID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TrdMatchID get(quickfix.field.TrdMatchID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TrdMatchID getTrdMatchID() throws FieldNotFound {
+ return get(new quickfix.field.TrdMatchID());
+ }
+
+ public boolean isSet(quickfix.field.TrdMatchID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTrdMatchID() {
+ return isSetField(880);
+ }
+
+ public void set(quickfix.fix44.component.Parties component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Parties getParties() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Parties());
+ }
+
+ public void set(quickfix.field.NoPartyIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartyIDs get(quickfix.field.NoPartyIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartyIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartyIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartyIDs() {
+ return isSetField(453);
+ }
+
+ public static class NoPartyIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {448, 447, 452, 802, 0};
+
+ public NoPartyIDs() {
+ super(453, 448, ORDER);
+ }
+
+ public void set(quickfix.field.PartyID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyID get(quickfix.field.PartyID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyID getPartyID() throws FieldNotFound {
+ return get(new quickfix.field.PartyID());
+ }
+
+ public boolean isSet(quickfix.field.PartyID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyID() {
+ return isSetField(448);
+ }
+
+ public void set(quickfix.field.PartyIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyIDSource get(quickfix.field.PartyIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyIDSource getPartyIDSource() throws FieldNotFound {
+ return get(new quickfix.field.PartyIDSource());
+ }
+
+ public boolean isSet(quickfix.field.PartyIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyIDSource() {
+ return isSetField(447);
+ }
+
+ public void set(quickfix.field.PartyRole value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartyRole get(quickfix.field.PartyRole value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartyRole getPartyRole() throws FieldNotFound {
+ return get(new quickfix.field.PartyRole());
+ }
+
+ public boolean isSet(quickfix.field.PartyRole field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartyRole() {
+ return isSetField(452);
+ }
+
+ public void set(quickfix.field.NoPartySubIDs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoPartySubIDs get(quickfix.field.NoPartySubIDs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoPartySubIDs getNoPartySubIDs() throws FieldNotFound {
+ return get(new quickfix.field.NoPartySubIDs());
+ }
+
+ public boolean isSet(quickfix.field.NoPartySubIDs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoPartySubIDs() {
+ return isSetField(802);
+ }
+
+ public static class NoPartySubIDs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {523, 803, 0};
+
+ public NoPartySubIDs() {
+ super(802, 523, ORDER);
+ }
+
+ public void set(quickfix.field.PartySubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubID get(quickfix.field.PartySubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubID getPartySubID() throws FieldNotFound {
+ return get(new quickfix.field.PartySubID());
+ }
+
+ public boolean isSet(quickfix.field.PartySubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubID() {
+ return isSetField(523);
+ }
+
+ public void set(quickfix.field.PartySubIDType value) {
+ setField(value);
+ }
+
+ public quickfix.field.PartySubIDType get(quickfix.field.PartySubIDType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PartySubIDType getPartySubIDType() throws FieldNotFound {
+ return get(new quickfix.field.PartySubIDType());
+ }
+
+ public boolean isSet(quickfix.field.PartySubIDType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPartySubIDType() {
+ return isSetField(803);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentExtension component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentExtension get(quickfix.fix44.component.InstrumentExtension component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentExtension getInstrumentExtension() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentExtension());
+ }
+
+ public void set(quickfix.field.DeliveryForm value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryForm get(quickfix.field.DeliveryForm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryForm getDeliveryForm() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryForm());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryForm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryForm() {
+ return isSetField(668);
+ }
+
+ public void set(quickfix.field.PctAtRisk value) {
+ setField(value);
+ }
+
+ public quickfix.field.PctAtRisk get(quickfix.field.PctAtRisk value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PctAtRisk getPctAtRisk() throws FieldNotFound {
+ return get(new quickfix.field.PctAtRisk());
+ }
+
+ public boolean isSet(quickfix.field.PctAtRisk field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPctAtRisk() {
+ return isSetField(869);
+ }
+
+ public void set(quickfix.field.NoInstrAttrib value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoInstrAttrib get(quickfix.field.NoInstrAttrib value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoInstrAttrib getNoInstrAttrib() throws FieldNotFound {
+ return get(new quickfix.field.NoInstrAttrib());
+ }
+
+ public boolean isSet(quickfix.field.NoInstrAttrib field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoInstrAttrib() {
+ return isSetField(870);
+ }
+
+ public static class NoInstrAttrib extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {871, 872, 0};
+
+ public NoInstrAttrib() {
+ super(870, 871, ORDER);
+ }
+
+ public void set(quickfix.field.InstrAttribType value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribType get(quickfix.field.InstrAttribType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribType getInstrAttribType() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribType());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribType() {
+ return isSetField(871);
+ }
+
+ public void set(quickfix.field.InstrAttribValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrAttribValue get(quickfix.field.InstrAttribValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrAttribValue getInstrAttribValue() throws FieldNotFound {
+ return get(new quickfix.field.InstrAttribValue());
+ }
+
+ public boolean isSet(quickfix.field.InstrAttribValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrAttribValue() {
+ return isSetField(872);
+ }
+
+ }
+
+ public void set(quickfix.fix44.component.FinancingDetails component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.FinancingDetails get(quickfix.fix44.component.FinancingDetails component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.FinancingDetails getFinancingDetails() throws FieldNotFound {
+ return get(new quickfix.fix44.component.FinancingDetails());
+ }
+
+ public void set(quickfix.field.AgreementDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDesc get(quickfix.field.AgreementDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDesc getAgreementDesc() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDesc());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDesc() {
+ return isSetField(913);
+ }
+
+ public void set(quickfix.field.AgreementID value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementID get(quickfix.field.AgreementID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementID getAgreementID() throws FieldNotFound {
+ return get(new quickfix.field.AgreementID());
+ }
+
+ public boolean isSet(quickfix.field.AgreementID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementID() {
+ return isSetField(914);
+ }
+
+ public void set(quickfix.field.AgreementDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementDate get(quickfix.field.AgreementDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementDate getAgreementDate() throws FieldNotFound {
+ return get(new quickfix.field.AgreementDate());
+ }
+
+ public boolean isSet(quickfix.field.AgreementDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementDate() {
+ return isSetField(915);
+ }
+
+ public void set(quickfix.field.AgreementCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.AgreementCurrency get(quickfix.field.AgreementCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.AgreementCurrency getAgreementCurrency() throws FieldNotFound {
+ return get(new quickfix.field.AgreementCurrency());
+ }
+
+ public boolean isSet(quickfix.field.AgreementCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetAgreementCurrency() {
+ return isSetField(918);
+ }
+
+ public void set(quickfix.field.TerminationType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TerminationType get(quickfix.field.TerminationType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TerminationType getTerminationType() throws FieldNotFound {
+ return get(new quickfix.field.TerminationType());
+ }
+
+ public boolean isSet(quickfix.field.TerminationType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTerminationType() {
+ return isSetField(788);
+ }
+
+ public void set(quickfix.field.StartDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.StartDate get(quickfix.field.StartDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StartDate getStartDate() throws FieldNotFound {
+ return get(new quickfix.field.StartDate());
+ }
+
+ public boolean isSet(quickfix.field.StartDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStartDate() {
+ return isSetField(916);
+ }
+
+ public void set(quickfix.field.EndDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EndDate get(quickfix.field.EndDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EndDate getEndDate() throws FieldNotFound {
+ return get(new quickfix.field.EndDate());
+ }
+
+ public boolean isSet(quickfix.field.EndDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEndDate() {
+ return isSetField(917);
+ }
+
+ public void set(quickfix.field.DeliveryType value) {
+ setField(value);
+ }
+
+ public quickfix.field.DeliveryType get(quickfix.field.DeliveryType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DeliveryType getDeliveryType() throws FieldNotFound {
+ return get(new quickfix.field.DeliveryType());
+ }
+
+ public boolean isSet(quickfix.field.DeliveryType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDeliveryType() {
+ return isSetField(919);
+ }
+
+ public void set(quickfix.field.MarginRatio value) {
+ setField(value);
+ }
+
+ public quickfix.field.MarginRatio get(quickfix.field.MarginRatio value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MarginRatio getMarginRatio() throws FieldNotFound {
+ return get(new quickfix.field.MarginRatio());
+ }
+
+ public boolean isSet(quickfix.field.MarginRatio field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMarginRatio() {
+ return isSetField(898);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887, 0};
+
+ public NoUnderlyings() {
+ super(711, 311, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingInstrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument get(quickfix.fix44.component.UnderlyingInstrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingInstrument getUnderlyingInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingInstrument());
+ }
+
+ public void set(quickfix.field.UnderlyingSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbol get(quickfix.field.UnderlyingSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbol getUnderlyingSymbol() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbol());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbol() {
+ return isSetField(311);
+ }
+
+ public void set(quickfix.field.UnderlyingSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx get(quickfix.field.UnderlyingSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSymbolSfx getUnderlyingSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSymbolSfx() {
+ return isSetField(312);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityID get(quickfix.field.UnderlyingSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityID getUnderlyingSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityID() {
+ return isSetField(309);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource get(quickfix.field.UnderlyingSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityIDSource getUnderlyingSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityIDSource() {
+ return isSetField(305);
+ }
+
+ public void set(quickfix.field.NoUnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID get(quickfix.field.NoUnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingSecurityAltID getNoUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingSecurityAltID() {
+ return isSetField(457);
+ }
+
+ public static class NoUnderlyingSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {458, 459, 0};
+
+ public NoUnderlyingSecurityAltID() {
+ super(457, 458, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID get(quickfix.field.UnderlyingSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltID getUnderlyingSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltID() {
+ return isSetField(458);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource get(quickfix.field.UnderlyingSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityAltIDSource getUnderlyingSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityAltIDSource() {
+ return isSetField(459);
+ }
+
+ }
+
+ public void set(quickfix.field.UnderlyingProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingProduct get(quickfix.field.UnderlyingProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingProduct getUnderlyingProduct() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingProduct());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingProduct() {
+ return isSetField(462);
+ }
+
+ public void set(quickfix.field.UnderlyingCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCFICode get(quickfix.field.UnderlyingCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCFICode getUnderlyingCFICode() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCFICode());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCFICode() {
+ return isSetField(463);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityType get(quickfix.field.UnderlyingSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityType getUnderlyingSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityType() {
+ return isSetField(310);
+ }
+
+ public void set(quickfix.field.UnderlyingSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType get(quickfix.field.UnderlyingSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecuritySubType getUnderlyingSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecuritySubType() {
+ return isSetField(763);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear get(quickfix.field.UnderlyingMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityMonthYear getUnderlyingMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityMonthYear() {
+ return isSetField(313);
+ }
+
+ public void set(quickfix.field.UnderlyingMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingMaturityDate get(quickfix.field.UnderlyingMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingMaturityDate getUnderlyingMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingMaturityDate() {
+ return isSetField(542);
+ }
+
+ public void set(quickfix.field.UnderlyingPutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPutOrCall get(quickfix.field.UnderlyingPutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPutOrCall getUnderlyingPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPutOrCall() {
+ return isSetField(315);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate get(quickfix.field.UnderlyingCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponPaymentDate getUnderlyingCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponPaymentDate() {
+ return isSetField(241);
+ }
+
+ public void set(quickfix.field.UnderlyingIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssueDate get(quickfix.field.UnderlyingIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssueDate getUnderlyingIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssueDate() {
+ return isSetField(242);
+ }
+
+ public void set(quickfix.field.UnderlyingRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType get(quickfix.field.UnderlyingRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepoCollateralSecurityType getUnderlyingRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepoCollateralSecurityType() {
+ return isSetField(243);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm get(quickfix.field.UnderlyingRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseTerm getUnderlyingRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseTerm() {
+ return isSetField(244);
+ }
+
+ public void set(quickfix.field.UnderlyingRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate get(quickfix.field.UnderlyingRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRepurchaseRate getUnderlyingRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRepurchaseRate() {
+ return isSetField(245);
+ }
+
+ public void set(quickfix.field.UnderlyingFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingFactor get(quickfix.field.UnderlyingFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingFactor getUnderlyingFactor() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingFactor());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingFactor() {
+ return isSetField(246);
+ }
+
+ public void set(quickfix.field.UnderlyingCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCreditRating get(quickfix.field.UnderlyingCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCreditRating getUnderlyingCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCreditRating() {
+ return isSetField(256);
+ }
+
+ public void set(quickfix.field.UnderlyingInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry get(quickfix.field.UnderlyingInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingInstrRegistry getUnderlyingInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingInstrRegistry() {
+ return isSetField(595);
+ }
+
+ public void set(quickfix.field.UnderlyingCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue get(quickfix.field.UnderlyingCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCountryOfIssue getUnderlyingCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCountryOfIssue() {
+ return isSetField(592);
+ }
+
+ public void set(quickfix.field.UnderlyingStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue get(quickfix.field.UnderlyingStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStateOrProvinceOfIssue getUnderlyingStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStateOrProvinceOfIssue() {
+ return isSetField(593);
+ }
+
+ public void set(quickfix.field.UnderlyingLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue get(quickfix.field.UnderlyingLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingLocaleOfIssue getUnderlyingLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingLocaleOfIssue() {
+ return isSetField(594);
+ }
+
+ public void set(quickfix.field.UnderlyingRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate get(quickfix.field.UnderlyingRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingRedemptionDate getUnderlyingRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingRedemptionDate() {
+ return isSetField(247);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikePrice get(quickfix.field.UnderlyingStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikePrice getUnderlyingStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikePrice() {
+ return isSetField(316);
+ }
+
+ public void set(quickfix.field.UnderlyingStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency get(quickfix.field.UnderlyingStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStrikeCurrency getUnderlyingStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStrikeCurrency() {
+ return isSetField(941);
+ }
+
+ public void set(quickfix.field.UnderlyingOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingOptAttribute get(quickfix.field.UnderlyingOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingOptAttribute getUnderlyingOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingOptAttribute() {
+ return isSetField(317);
+ }
+
+ public void set(quickfix.field.UnderlyingContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier get(quickfix.field.UnderlyingContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingContractMultiplier getUnderlyingContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingContractMultiplier() {
+ return isSetField(436);
+ }
+
+ public void set(quickfix.field.UnderlyingCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCouponRate get(quickfix.field.UnderlyingCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCouponRate getUnderlyingCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCouponRate() {
+ return isSetField(435);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange get(quickfix.field.UnderlyingSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityExchange getUnderlyingSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityExchange() {
+ return isSetField(308);
+ }
+
+ public void set(quickfix.field.UnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingIssuer get(quickfix.field.UnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingIssuer getUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingIssuer() {
+ return isSetField(306);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen get(quickfix.field.EncodedUnderlyingIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuerLen getEncodedUnderlyingIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuerLen() {
+ return isSetField(362);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer get(quickfix.field.EncodedUnderlyingIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingIssuer getEncodedUnderlyingIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingIssuer() {
+ return isSetField(363);
+ }
+
+ public void set(quickfix.field.UnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc get(quickfix.field.UnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingSecurityDesc getUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingSecurityDesc() {
+ return isSetField(307);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen get(quickfix.field.EncodedUnderlyingSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDescLen getEncodedUnderlyingSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDescLen() {
+ return isSetField(364);
+ }
+
+ public void set(quickfix.field.EncodedUnderlyingSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc get(quickfix.field.EncodedUnderlyingSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedUnderlyingSecurityDesc getEncodedUnderlyingSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedUnderlyingSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedUnderlyingSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedUnderlyingSecurityDesc() {
+ return isSetField(365);
+ }
+
+ public void set(quickfix.field.UnderlyingCPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPProgram get(quickfix.field.UnderlyingCPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPProgram getUnderlyingCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPProgram());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPProgram() {
+ return isSetField(877);
+ }
+
+ public void set(quickfix.field.UnderlyingCPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCPRegType get(quickfix.field.UnderlyingCPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCPRegType getUnderlyingCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCPRegType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCPRegType() {
+ return isSetField(878);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrency get(quickfix.field.UnderlyingCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrency getUnderlyingCurrency() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrency());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrency() {
+ return isSetField(318);
+ }
+
+ public void set(quickfix.field.UnderlyingQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingQty get(quickfix.field.UnderlyingQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingQty getUnderlyingQty() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingQty());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingQty() {
+ return isSetField(879);
+ }
+
+ public void set(quickfix.field.UnderlyingPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingPx get(quickfix.field.UnderlyingPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingPx getUnderlyingPx() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingPx());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingPx() {
+ return isSetField(810);
+ }
+
+ public void set(quickfix.field.UnderlyingDirtyPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice get(quickfix.field.UnderlyingDirtyPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingDirtyPrice getUnderlyingDirtyPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingDirtyPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingDirtyPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingDirtyPrice() {
+ return isSetField(882);
+ }
+
+ public void set(quickfix.field.UnderlyingEndPrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndPrice get(quickfix.field.UnderlyingEndPrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndPrice getUnderlyingEndPrice() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndPrice());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndPrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndPrice() {
+ return isSetField(883);
+ }
+
+ public void set(quickfix.field.UnderlyingStartValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStartValue get(quickfix.field.UnderlyingStartValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStartValue getUnderlyingStartValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStartValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStartValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStartValue() {
+ return isSetField(884);
+ }
+
+ public void set(quickfix.field.UnderlyingCurrentValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingCurrentValue get(quickfix.field.UnderlyingCurrentValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingCurrentValue getUnderlyingCurrentValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingCurrentValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingCurrentValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingCurrentValue() {
+ return isSetField(885);
+ }
+
+ public void set(quickfix.field.UnderlyingEndValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingEndValue get(quickfix.field.UnderlyingEndValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingEndValue getUnderlyingEndValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingEndValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingEndValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingEndValue() {
+ return isSetField(886);
+ }
+
+ public void set(quickfix.fix44.component.UnderlyingStipulations component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations get(quickfix.fix44.component.UnderlyingStipulations component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.UnderlyingStipulations getUnderlyingStipulations() throws FieldNotFound {
+ return get(new quickfix.fix44.component.UnderlyingStipulations());
+ }
+
+ public void set(quickfix.field.NoUnderlyingStips value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyingStips get(quickfix.field.NoUnderlyingStips value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyingStips getNoUnderlyingStips() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyingStips());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyingStips field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyingStips() {
+ return isSetField(887);
+ }
+
+ public static class NoUnderlyingStips extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {888, 889, 0};
+
+ public NoUnderlyingStips() {
+ super(887, 888, ORDER);
+ }
+
+ public void set(quickfix.field.UnderlyingStipType value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipType get(quickfix.field.UnderlyingStipType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipType getUnderlyingStipType() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipType());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipType() {
+ return isSetField(888);
+ }
+
+ public void set(quickfix.field.UnderlyingStipValue value) {
+ setField(value);
+ }
+
+ public quickfix.field.UnderlyingStipValue get(quickfix.field.UnderlyingStipValue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.UnderlyingStipValue getUnderlyingStipValue() throws FieldNotFound {
+ return get(new quickfix.field.UnderlyingStipValue());
+ }
+
+ public boolean isSet(quickfix.field.UnderlyingStipValue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetUnderlyingStipValue() {
+ return isSetField(889);
+ }
+
+ }
+
+ }
+
+ public void set(quickfix.field.NoLegs value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegs get(quickfix.field.NoLegs value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegs getNoLegs() throws FieldNotFound {
+ return get(new quickfix.field.NoLegs());
+ }
+
+ public boolean isSet(quickfix.field.NoLegs field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegs() {
+ return isSetField(555);
+ }
+
+ public static class NoLegs extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {600, 601, 602, 603, 604, 607, 608, 609, 764, 610, 611, 248, 249, 250, 251, 252, 253, 257, 599, 596, 597, 598, 254, 612, 942, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 556, 740, 739, 955, 956, 0};
+
+ public NoLegs() {
+ super(555, 600, ORDER);
+ }
+
+ public void set(quickfix.fix44.component.InstrumentLeg component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.InstrumentLeg get(quickfix.fix44.component.InstrumentLeg component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.InstrumentLeg getInstrumentLeg() throws FieldNotFound {
+ return get(new quickfix.fix44.component.InstrumentLeg());
+ }
+
+ public void set(quickfix.field.LegSymbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbol get(quickfix.field.LegSymbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbol getLegSymbol() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbol());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbol() {
+ return isSetField(600);
+ }
+
+ public void set(quickfix.field.LegSymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSymbolSfx get(quickfix.field.LegSymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSymbolSfx getLegSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.LegSymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.LegSymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSymbolSfx() {
+ return isSetField(601);
+ }
+
+ public void set(quickfix.field.LegSecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityID get(quickfix.field.LegSecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityID getLegSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityID() {
+ return isSetField(602);
+ }
+
+ public void set(quickfix.field.LegSecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityIDSource get(quickfix.field.LegSecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityIDSource getLegSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityIDSource() {
+ return isSetField(603);
+ }
+
+ public void set(quickfix.field.NoLegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoLegSecurityAltID get(quickfix.field.NoLegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoLegSecurityAltID getNoLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoLegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoLegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoLegSecurityAltID() {
+ return isSetField(604);
+ }
+
+ public static class NoLegSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {605, 606, 0};
+
+ public NoLegSecurityAltID() {
+ super(604, 605, ORDER);
+ }
+
+ public void set(quickfix.field.LegSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltID get(quickfix.field.LegSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltID getLegSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltID() {
+ return isSetField(605);
+ }
+
+ public void set(quickfix.field.LegSecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityAltIDSource get(quickfix.field.LegSecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityAltIDSource getLegSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityAltIDSource() {
+ return isSetField(606);
+ }
+
+ }
+
+ public void set(quickfix.field.LegProduct value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegProduct get(quickfix.field.LegProduct value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegProduct getLegProduct() throws FieldNotFound {
+ return get(new quickfix.field.LegProduct());
+ }
+
+ public boolean isSet(quickfix.field.LegProduct field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegProduct() {
+ return isSetField(607);
+ }
+
+ public void set(quickfix.field.LegCFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCFICode get(quickfix.field.LegCFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCFICode getLegCFICode() throws FieldNotFound {
+ return get(new quickfix.field.LegCFICode());
+ }
+
+ public boolean isSet(quickfix.field.LegCFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCFICode() {
+ return isSetField(608);
+ }
+
+ public void set(quickfix.field.LegSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityType get(quickfix.field.LegSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityType getLegSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityType() {
+ return isSetField(609);
+ }
+
+ public void set(quickfix.field.LegSecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecuritySubType get(quickfix.field.LegSecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecuritySubType getLegSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.LegSecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.LegSecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecuritySubType() {
+ return isSetField(764);
+ }
+
+ public void set(quickfix.field.LegMaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityMonthYear get(quickfix.field.LegMaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityMonthYear getLegMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityMonthYear() {
+ return isSetField(610);
+ }
+
+ public void set(quickfix.field.LegMaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegMaturityDate get(quickfix.field.LegMaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegMaturityDate getLegMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.LegMaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.LegMaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegMaturityDate() {
+ return isSetField(611);
+ }
+
+ public void set(quickfix.field.LegCouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponPaymentDate get(quickfix.field.LegCouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponPaymentDate getLegCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponPaymentDate() {
+ return isSetField(248);
+ }
+
+ public void set(quickfix.field.LegIssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssueDate get(quickfix.field.LegIssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssueDate getLegIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.LegIssueDate());
+ }
+
+ public boolean isSet(quickfix.field.LegIssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssueDate() {
+ return isSetField(249);
+ }
+
+ public void set(quickfix.field.LegRepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType get(quickfix.field.LegRepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepoCollateralSecurityType getLegRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.LegRepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.LegRepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepoCollateralSecurityType() {
+ return isSetField(250);
+ }
+
+ public void set(quickfix.field.LegRepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseTerm get(quickfix.field.LegRepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseTerm getLegRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseTerm() {
+ return isSetField(251);
+ }
+
+ public void set(quickfix.field.LegRepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRepurchaseRate get(quickfix.field.LegRepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRepurchaseRate getLegRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.LegRepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.LegRepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRepurchaseRate() {
+ return isSetField(252);
+ }
+
+ public void set(quickfix.field.LegFactor value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegFactor get(quickfix.field.LegFactor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegFactor getLegFactor() throws FieldNotFound {
+ return get(new quickfix.field.LegFactor());
+ }
+
+ public boolean isSet(quickfix.field.LegFactor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegFactor() {
+ return isSetField(253);
+ }
+
+ public void set(quickfix.field.LegCreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCreditRating get(quickfix.field.LegCreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCreditRating getLegCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.LegCreditRating());
+ }
+
+ public boolean isSet(quickfix.field.LegCreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCreditRating() {
+ return isSetField(257);
+ }
+
+ public void set(quickfix.field.LegInstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInstrRegistry get(quickfix.field.LegInstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInstrRegistry getLegInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.LegInstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.LegInstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInstrRegistry() {
+ return isSetField(599);
+ }
+
+ public void set(quickfix.field.LegCountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCountryOfIssue get(quickfix.field.LegCountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCountryOfIssue getLegCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegCountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegCountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCountryOfIssue() {
+ return isSetField(596);
+ }
+
+ public void set(quickfix.field.LegStateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue get(quickfix.field.LegStateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStateOrProvinceOfIssue getLegStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegStateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegStateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStateOrProvinceOfIssue() {
+ return isSetField(597);
+ }
+
+ public void set(quickfix.field.LegLocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegLocaleOfIssue get(quickfix.field.LegLocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegLocaleOfIssue getLegLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LegLocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LegLocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegLocaleOfIssue() {
+ return isSetField(598);
+ }
+
+ public void set(quickfix.field.LegRedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRedemptionDate get(quickfix.field.LegRedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRedemptionDate getLegRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.LegRedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.LegRedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRedemptionDate() {
+ return isSetField(254);
+ }
+
+ public void set(quickfix.field.LegStrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikePrice get(quickfix.field.LegStrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikePrice getLegStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikePrice() {
+ return isSetField(612);
+ }
+
+ public void set(quickfix.field.LegStrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegStrikeCurrency get(quickfix.field.LegStrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegStrikeCurrency getLegStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegStrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegStrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegStrikeCurrency() {
+ return isSetField(942);
+ }
+
+ public void set(quickfix.field.LegOptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegOptAttribute get(quickfix.field.LegOptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegOptAttribute getLegOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.LegOptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.LegOptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegOptAttribute() {
+ return isSetField(613);
+ }
+
+ public void set(quickfix.field.LegContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractMultiplier get(quickfix.field.LegContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractMultiplier getLegContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.LegContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.LegContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractMultiplier() {
+ return isSetField(614);
+ }
+
+ public void set(quickfix.field.LegCouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCouponRate get(quickfix.field.LegCouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCouponRate getLegCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.LegCouponRate());
+ }
+
+ public boolean isSet(quickfix.field.LegCouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCouponRate() {
+ return isSetField(615);
+ }
+
+ public void set(quickfix.field.LegSecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityExchange get(quickfix.field.LegSecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityExchange getLegSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityExchange() {
+ return isSetField(616);
+ }
+
+ public void set(quickfix.field.LegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegIssuer get(quickfix.field.LegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegIssuer getLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.LegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.LegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegIssuer() {
+ return isSetField(617);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuerLen get(quickfix.field.EncodedLegIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuerLen getEncodedLegIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuerLen() {
+ return isSetField(618);
+ }
+
+ public void set(quickfix.field.EncodedLegIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegIssuer get(quickfix.field.EncodedLegIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegIssuer getEncodedLegIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegIssuer() {
+ return isSetField(619);
+ }
+
+ public void set(quickfix.field.LegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSecurityDesc get(quickfix.field.LegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSecurityDesc getLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.LegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.LegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSecurityDesc() {
+ return isSetField(620);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen get(quickfix.field.EncodedLegSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDescLen getEncodedLegSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDescLen() {
+ return isSetField(621);
+ }
+
+ public void set(quickfix.field.EncodedLegSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc get(quickfix.field.EncodedLegSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedLegSecurityDesc getEncodedLegSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedLegSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedLegSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedLegSecurityDesc() {
+ return isSetField(622);
+ }
+
+ public void set(quickfix.field.LegRatioQty value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegRatioQty get(quickfix.field.LegRatioQty value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegRatioQty getLegRatioQty() throws FieldNotFound {
+ return get(new quickfix.field.LegRatioQty());
+ }
+
+ public boolean isSet(quickfix.field.LegRatioQty field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegRatioQty() {
+ return isSetField(623);
+ }
+
+ public void set(quickfix.field.LegSide value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegSide get(quickfix.field.LegSide value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegSide getLegSide() throws FieldNotFound {
+ return get(new quickfix.field.LegSide());
+ }
+
+ public boolean isSet(quickfix.field.LegSide field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegSide() {
+ return isSetField(624);
+ }
+
+ public void set(quickfix.field.LegCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegCurrency get(quickfix.field.LegCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegCurrency getLegCurrency() throws FieldNotFound {
+ return get(new quickfix.field.LegCurrency());
+ }
+
+ public boolean isSet(quickfix.field.LegCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegCurrency() {
+ return isSetField(556);
+ }
+
+ public void set(quickfix.field.LegPool value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegPool get(quickfix.field.LegPool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegPool getLegPool() throws FieldNotFound {
+ return get(new quickfix.field.LegPool());
+ }
+
+ public boolean isSet(quickfix.field.LegPool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegPool() {
+ return isSetField(740);
+ }
+
+ public void set(quickfix.field.LegDatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegDatedDate get(quickfix.field.LegDatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegDatedDate getLegDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.LegDatedDate());
+ }
+
+ public boolean isSet(quickfix.field.LegDatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegDatedDate() {
+ return isSetField(739);
+ }
+
+ public void set(quickfix.field.LegContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegContractSettlMonth get(quickfix.field.LegContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegContractSettlMonth getLegContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.LegContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.LegContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegContractSettlMonth() {
+ return isSetField(955);
+ }
+
+ public void set(quickfix.field.LegInterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.LegInterestAccrualDate get(quickfix.field.LegInterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LegInterestAccrualDate getLegInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.LegInterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.LegInterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLegInterestAccrualDate() {
+ return isSetField(956);
+ }
+
+ }
+
+ public void set(quickfix.field.NoDates value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoDates get(quickfix.field.NoDates value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoDates getNoDates() throws FieldNotFound {
+ return get(new quickfix.field.NoDates());
+ }
+
+ public boolean isSet(quickfix.field.NoDates field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoDates() {
+ return isSetField(580);
+ }
+
+ public static class NoDates extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {75, 60, 0};
+
+ public NoDates() {
+ super(580, 75, ORDER);
+ }
+
+ public void set(quickfix.field.TradeDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeDate get(quickfix.field.TradeDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeDate getTradeDate() throws FieldNotFound {
+ return get(new quickfix.field.TradeDate());
+ }
+
+ public boolean isSet(quickfix.field.TradeDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeDate() {
+ return isSetField(75);
+ }
+
+ public void set(quickfix.field.TransactTime value) {
+ setField(value);
+ }
+
+ public quickfix.field.TransactTime get(quickfix.field.TransactTime value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TransactTime getTransactTime() throws FieldNotFound {
+ return get(new quickfix.field.TransactTime());
+ }
+
+ public boolean isSet(quickfix.field.TransactTime field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTransactTime() {
+ return isSetField(60);
+ }
+
+ }
+
+ public void set(quickfix.field.ClearingBusinessDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.ClearingBusinessDate get(quickfix.field.ClearingBusinessDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ClearingBusinessDate getClearingBusinessDate() throws FieldNotFound {
+ return get(new quickfix.field.ClearingBusinessDate());
+ }
+
+ public boolean isSet(quickfix.field.ClearingBusinessDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetClearingBusinessDate() {
+ return isSetField(715);
+ }
+
+ public void set(quickfix.field.TradingSessionID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionID get(quickfix.field.TradingSessionID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionID getTradingSessionID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionID() {
+ return isSetField(336);
+ }
+
+ public void set(quickfix.field.TradingSessionSubID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradingSessionSubID get(quickfix.field.TradingSessionSubID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradingSessionSubID getTradingSessionSubID() throws FieldNotFound {
+ return get(new quickfix.field.TradingSessionSubID());
+ }
+
+ public boolean isSet(quickfix.field.TradingSessionSubID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradingSessionSubID() {
+ return isSetField(625);
+ }
+
+ public void set(quickfix.field.TimeBracket value) {
+ setField(value);
+ }
+
+ public quickfix.field.TimeBracket get(quickfix.field.TimeBracket value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TimeBracket getTimeBracket() throws FieldNotFound {
+ return get(new quickfix.field.TimeBracket());
+ }
+
+ public boolean isSet(quickfix.field.TimeBracket field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTimeBracket() {
+ return isSetField(943);
+ }
+
+ public void set(quickfix.field.Side value) {
+ setField(value);
+ }
+
+ public quickfix.field.Side get(quickfix.field.Side value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Side getSide() throws FieldNotFound {
+ return get(new quickfix.field.Side());
+ }
+
+ public boolean isSet(quickfix.field.Side field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSide() {
+ return isSetField(54);
+ }
+
+ public void set(quickfix.field.MultiLegReportingType value) {
+ setField(value);
+ }
+
+ public quickfix.field.MultiLegReportingType get(quickfix.field.MultiLegReportingType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MultiLegReportingType getMultiLegReportingType() throws FieldNotFound {
+ return get(new quickfix.field.MultiLegReportingType());
+ }
+
+ public boolean isSet(quickfix.field.MultiLegReportingType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMultiLegReportingType() {
+ return isSetField(442);
+ }
+
+ public void set(quickfix.field.TradeInputSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeInputSource get(quickfix.field.TradeInputSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeInputSource getTradeInputSource() throws FieldNotFound {
+ return get(new quickfix.field.TradeInputSource());
+ }
+
+ public boolean isSet(quickfix.field.TradeInputSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeInputSource() {
+ return isSetField(578);
+ }
+
+ public void set(quickfix.field.TradeInputDevice value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeInputDevice get(quickfix.field.TradeInputDevice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeInputDevice getTradeInputDevice() throws FieldNotFound {
+ return get(new quickfix.field.TradeInputDevice());
+ }
+
+ public boolean isSet(quickfix.field.TradeInputDevice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeInputDevice() {
+ return isSetField(579);
+ }
+
+ public void set(quickfix.field.ResponseTransportType value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseTransportType get(quickfix.field.ResponseTransportType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseTransportType getResponseTransportType() throws FieldNotFound {
+ return get(new quickfix.field.ResponseTransportType());
+ }
+
+ public boolean isSet(quickfix.field.ResponseTransportType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseTransportType() {
+ return isSetField(725);
+ }
+
+ public void set(quickfix.field.ResponseDestination value) {
+ setField(value);
+ }
+
+ public quickfix.field.ResponseDestination get(quickfix.field.ResponseDestination value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ResponseDestination getResponseDestination() throws FieldNotFound {
+ return get(new quickfix.field.ResponseDestination());
+ }
+
+ public boolean isSet(quickfix.field.ResponseDestination field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetResponseDestination() {
+ return isSetField(726);
+ }
+
+ public void set(quickfix.field.Text value) {
+ setField(value);
+ }
+
+ public quickfix.field.Text get(quickfix.field.Text value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Text getText() throws FieldNotFound {
+ return get(new quickfix.field.Text());
+ }
+
+ public boolean isSet(quickfix.field.Text field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetText() {
+ return isSetField(58);
+ }
+
+ public void set(quickfix.field.EncodedTextLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedTextLen get(quickfix.field.EncodedTextLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedTextLen getEncodedTextLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedTextLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedTextLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedTextLen() {
+ return isSetField(354);
+ }
+
+ public void set(quickfix.field.EncodedText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedText get(quickfix.field.EncodedText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedText getEncodedText() throws FieldNotFound {
+ return get(new quickfix.field.EncodedText());
+ }
+
+ public boolean isSet(quickfix.field.EncodedText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedText() {
+ return isSetField(355);
+ }
+
+}
diff --git a/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportRequestAck.java b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportRequestAck.java
new file mode 100644
index 000000000..647b526ef
--- /dev/null
+++ b/quickfixj-codegenerator/src/test/resources/golden/fix44/quickfix/fix44/TradeCaptureReportRequestAck.java
@@ -0,0 +1,3476 @@
+
+package quickfix.fix44;
+
+import quickfix.FieldNotFound;
+
+import quickfix.Group;
+
+public class TradeCaptureReportRequestAck extends Message {
+
+ static final long serialVersionUID = 20050617;
+ public static final String MSGTYPE = "AQ";
+
+
+ public TradeCaptureReportRequestAck() {
+
+ super(new int[] {568, 569, 263, 748, 749, 750, 55, 65, 48, 22, 454, 460, 461, 167, 762, 200, 541, 201, 224, 225, 239, 226, 227, 228, 255, 543, 470, 471, 472, 240, 202, 947, 206, 231, 223, 207, 106, 348, 349, 107, 350, 351, 691, 667, 875, 876, 864, 873, 874, 711, 555, 442, 725, 726, 58, 354, 355, 0 });
+
+ getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
+ }
+
+ public TradeCaptureReportRequestAck(quickfix.field.TradeRequestID tradeRequestID, quickfix.field.TradeRequestType tradeRequestType, quickfix.field.TradeRequestResult tradeRequestResult, quickfix.field.TradeRequestStatus tradeRequestStatus) {
+ this();
+ setField(tradeRequestID);
+ setField(tradeRequestType);
+ setField(tradeRequestResult);
+ setField(tradeRequestStatus);
+ }
+
+ public void set(quickfix.field.TradeRequestID value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestID get(quickfix.field.TradeRequestID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestID getTradeRequestID() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestID());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestID() {
+ return isSetField(568);
+ }
+
+ public void set(quickfix.field.TradeRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestType get(quickfix.field.TradeRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestType getTradeRequestType() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestType());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestType() {
+ return isSetField(569);
+ }
+
+ public void set(quickfix.field.SubscriptionRequestType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SubscriptionRequestType get(quickfix.field.SubscriptionRequestType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SubscriptionRequestType getSubscriptionRequestType() throws FieldNotFound {
+ return get(new quickfix.field.SubscriptionRequestType());
+ }
+
+ public boolean isSet(quickfix.field.SubscriptionRequestType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSubscriptionRequestType() {
+ return isSetField(263);
+ }
+
+ public void set(quickfix.field.TotNumTradeReports value) {
+ setField(value);
+ }
+
+ public quickfix.field.TotNumTradeReports get(quickfix.field.TotNumTradeReports value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TotNumTradeReports getTotNumTradeReports() throws FieldNotFound {
+ return get(new quickfix.field.TotNumTradeReports());
+ }
+
+ public boolean isSet(quickfix.field.TotNumTradeReports field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTotNumTradeReports() {
+ return isSetField(748);
+ }
+
+ public void set(quickfix.field.TradeRequestResult value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestResult get(quickfix.field.TradeRequestResult value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestResult getTradeRequestResult() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestResult());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestResult field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestResult() {
+ return isSetField(749);
+ }
+
+ public void set(quickfix.field.TradeRequestStatus value) {
+ setField(value);
+ }
+
+ public quickfix.field.TradeRequestStatus get(quickfix.field.TradeRequestStatus value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.TradeRequestStatus getTradeRequestStatus() throws FieldNotFound {
+ return get(new quickfix.field.TradeRequestStatus());
+ }
+
+ public boolean isSet(quickfix.field.TradeRequestStatus field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetTradeRequestStatus() {
+ return isSetField(750);
+ }
+
+ public void set(quickfix.fix44.component.Instrument component) {
+ setComponent(component);
+ }
+
+ public quickfix.fix44.component.Instrument get(quickfix.fix44.component.Instrument component) throws FieldNotFound {
+ getComponent(component);
+ return component;
+ }
+
+ public quickfix.fix44.component.Instrument getInstrument() throws FieldNotFound {
+ return get(new quickfix.fix44.component.Instrument());
+ }
+
+ public void set(quickfix.field.Symbol value) {
+ setField(value);
+ }
+
+ public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Symbol getSymbol() throws FieldNotFound {
+ return get(new quickfix.field.Symbol());
+ }
+
+ public boolean isSet(quickfix.field.Symbol field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbol() {
+ return isSetField(55);
+ }
+
+ public void set(quickfix.field.SymbolSfx value) {
+ setField(value);
+ }
+
+ public quickfix.field.SymbolSfx get(quickfix.field.SymbolSfx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SymbolSfx getSymbolSfx() throws FieldNotFound {
+ return get(new quickfix.field.SymbolSfx());
+ }
+
+ public boolean isSet(quickfix.field.SymbolSfx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSymbolSfx() {
+ return isSetField(65);
+ }
+
+ public void set(quickfix.field.SecurityID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityID get(quickfix.field.SecurityID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityID getSecurityID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityID() {
+ return isSetField(48);
+ }
+
+ public void set(quickfix.field.SecurityIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityIDSource getSecurityIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityIDSource() {
+ return isSetField(22);
+ }
+
+ public void set(quickfix.field.NoSecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoSecurityAltID get(quickfix.field.NoSecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoSecurityAltID getNoSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.NoSecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.NoSecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoSecurityAltID() {
+ return isSetField(454);
+ }
+
+ public static class NoSecurityAltID extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {455, 456, 0};
+
+ public NoSecurityAltID() {
+ super(454, 455, ORDER);
+ }
+
+ public void set(quickfix.field.SecurityAltID value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltID get(quickfix.field.SecurityAltID value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltID getSecurityAltID() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltID());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltID field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltID() {
+ return isSetField(455);
+ }
+
+ public void set(quickfix.field.SecurityAltIDSource value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityAltIDSource get(quickfix.field.SecurityAltIDSource value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityAltIDSource getSecurityAltIDSource() throws FieldNotFound {
+ return get(new quickfix.field.SecurityAltIDSource());
+ }
+
+ public boolean isSet(quickfix.field.SecurityAltIDSource field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityAltIDSource() {
+ return isSetField(456);
+ }
+
+ }
+
+ public void set(quickfix.field.Product value) {
+ setField(value);
+ }
+
+ public quickfix.field.Product get(quickfix.field.Product value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Product getProduct() throws FieldNotFound {
+ return get(new quickfix.field.Product());
+ }
+
+ public boolean isSet(quickfix.field.Product field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetProduct() {
+ return isSetField(460);
+ }
+
+ public void set(quickfix.field.CFICode value) {
+ setField(value);
+ }
+
+ public quickfix.field.CFICode get(quickfix.field.CFICode value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CFICode getCFICode() throws FieldNotFound {
+ return get(new quickfix.field.CFICode());
+ }
+
+ public boolean isSet(quickfix.field.CFICode field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCFICode() {
+ return isSetField(461);
+ }
+
+ public void set(quickfix.field.SecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityType get(quickfix.field.SecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityType getSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.SecurityType());
+ }
+
+ public boolean isSet(quickfix.field.SecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityType() {
+ return isSetField(167);
+ }
+
+ public void set(quickfix.field.SecuritySubType value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecuritySubType get(quickfix.field.SecuritySubType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecuritySubType getSecuritySubType() throws FieldNotFound {
+ return get(new quickfix.field.SecuritySubType());
+ }
+
+ public boolean isSet(quickfix.field.SecuritySubType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecuritySubType() {
+ return isSetField(762);
+ }
+
+ public void set(quickfix.field.MaturityMonthYear value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityMonthYear get(quickfix.field.MaturityMonthYear value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityMonthYear getMaturityMonthYear() throws FieldNotFound {
+ return get(new quickfix.field.MaturityMonthYear());
+ }
+
+ public boolean isSet(quickfix.field.MaturityMonthYear field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityMonthYear() {
+ return isSetField(200);
+ }
+
+ public void set(quickfix.field.MaturityDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.MaturityDate get(quickfix.field.MaturityDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.MaturityDate getMaturityDate() throws FieldNotFound {
+ return get(new quickfix.field.MaturityDate());
+ }
+
+ public boolean isSet(quickfix.field.MaturityDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetMaturityDate() {
+ return isSetField(541);
+ }
+
+ public void set(quickfix.field.PutOrCall value) {
+ setField(value);
+ }
+
+ public quickfix.field.PutOrCall get(quickfix.field.PutOrCall value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.PutOrCall getPutOrCall() throws FieldNotFound {
+ return get(new quickfix.field.PutOrCall());
+ }
+
+ public boolean isSet(quickfix.field.PutOrCall field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPutOrCall() {
+ return isSetField(201);
+ }
+
+ public void set(quickfix.field.CouponPaymentDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponPaymentDate get(quickfix.field.CouponPaymentDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponPaymentDate getCouponPaymentDate() throws FieldNotFound {
+ return get(new quickfix.field.CouponPaymentDate());
+ }
+
+ public boolean isSet(quickfix.field.CouponPaymentDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponPaymentDate() {
+ return isSetField(224);
+ }
+
+ public void set(quickfix.field.IssueDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.IssueDate get(quickfix.field.IssueDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.IssueDate getIssueDate() throws FieldNotFound {
+ return get(new quickfix.field.IssueDate());
+ }
+
+ public boolean isSet(quickfix.field.IssueDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssueDate() {
+ return isSetField(225);
+ }
+
+ public void set(quickfix.field.RepoCollateralSecurityType value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepoCollateralSecurityType get(quickfix.field.RepoCollateralSecurityType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepoCollateralSecurityType getRepoCollateralSecurityType() throws FieldNotFound {
+ return get(new quickfix.field.RepoCollateralSecurityType());
+ }
+
+ public boolean isSet(quickfix.field.RepoCollateralSecurityType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepoCollateralSecurityType() {
+ return isSetField(239);
+ }
+
+ public void set(quickfix.field.RepurchaseTerm value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseTerm get(quickfix.field.RepurchaseTerm value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseTerm getRepurchaseTerm() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseTerm());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseTerm field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseTerm() {
+ return isSetField(226);
+ }
+
+ public void set(quickfix.field.RepurchaseRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RepurchaseRate get(quickfix.field.RepurchaseRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RepurchaseRate getRepurchaseRate() throws FieldNotFound {
+ return get(new quickfix.field.RepurchaseRate());
+ }
+
+ public boolean isSet(quickfix.field.RepurchaseRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRepurchaseRate() {
+ return isSetField(227);
+ }
+
+ public void set(quickfix.field.Factor value) {
+ setField(value);
+ }
+
+ public quickfix.field.Factor get(quickfix.field.Factor value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Factor getFactor() throws FieldNotFound {
+ return get(new quickfix.field.Factor());
+ }
+
+ public boolean isSet(quickfix.field.Factor field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetFactor() {
+ return isSetField(228);
+ }
+
+ public void set(quickfix.field.CreditRating value) {
+ setField(value);
+ }
+
+ public quickfix.field.CreditRating get(quickfix.field.CreditRating value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CreditRating getCreditRating() throws FieldNotFound {
+ return get(new quickfix.field.CreditRating());
+ }
+
+ public boolean isSet(quickfix.field.CreditRating field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCreditRating() {
+ return isSetField(255);
+ }
+
+ public void set(quickfix.field.InstrRegistry value) {
+ setField(value);
+ }
+
+ public quickfix.field.InstrRegistry get(quickfix.field.InstrRegistry value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InstrRegistry getInstrRegistry() throws FieldNotFound {
+ return get(new quickfix.field.InstrRegistry());
+ }
+
+ public boolean isSet(quickfix.field.InstrRegistry field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInstrRegistry() {
+ return isSetField(543);
+ }
+
+ public void set(quickfix.field.CountryOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.CountryOfIssue get(quickfix.field.CountryOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CountryOfIssue getCountryOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.CountryOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.CountryOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCountryOfIssue() {
+ return isSetField(470);
+ }
+
+ public void set(quickfix.field.StateOrProvinceOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue get(quickfix.field.StateOrProvinceOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StateOrProvinceOfIssue getStateOrProvinceOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.StateOrProvinceOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.StateOrProvinceOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStateOrProvinceOfIssue() {
+ return isSetField(471);
+ }
+
+ public void set(quickfix.field.LocaleOfIssue value) {
+ setField(value);
+ }
+
+ public quickfix.field.LocaleOfIssue get(quickfix.field.LocaleOfIssue value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.LocaleOfIssue getLocaleOfIssue() throws FieldNotFound {
+ return get(new quickfix.field.LocaleOfIssue());
+ }
+
+ public boolean isSet(quickfix.field.LocaleOfIssue field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetLocaleOfIssue() {
+ return isSetField(472);
+ }
+
+ public void set(quickfix.field.RedemptionDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.RedemptionDate get(quickfix.field.RedemptionDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.RedemptionDate getRedemptionDate() throws FieldNotFound {
+ return get(new quickfix.field.RedemptionDate());
+ }
+
+ public boolean isSet(quickfix.field.RedemptionDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetRedemptionDate() {
+ return isSetField(240);
+ }
+
+ public void set(quickfix.field.StrikePrice value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikePrice get(quickfix.field.StrikePrice value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikePrice getStrikePrice() throws FieldNotFound {
+ return get(new quickfix.field.StrikePrice());
+ }
+
+ public boolean isSet(quickfix.field.StrikePrice field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikePrice() {
+ return isSetField(202);
+ }
+
+ public void set(quickfix.field.StrikeCurrency value) {
+ setField(value);
+ }
+
+ public quickfix.field.StrikeCurrency get(quickfix.field.StrikeCurrency value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.StrikeCurrency getStrikeCurrency() throws FieldNotFound {
+ return get(new quickfix.field.StrikeCurrency());
+ }
+
+ public boolean isSet(quickfix.field.StrikeCurrency field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetStrikeCurrency() {
+ return isSetField(947);
+ }
+
+ public void set(quickfix.field.OptAttribute value) {
+ setField(value);
+ }
+
+ public quickfix.field.OptAttribute get(quickfix.field.OptAttribute value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.OptAttribute getOptAttribute() throws FieldNotFound {
+ return get(new quickfix.field.OptAttribute());
+ }
+
+ public boolean isSet(quickfix.field.OptAttribute field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetOptAttribute() {
+ return isSetField(206);
+ }
+
+ public void set(quickfix.field.ContractMultiplier value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractMultiplier get(quickfix.field.ContractMultiplier value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractMultiplier getContractMultiplier() throws FieldNotFound {
+ return get(new quickfix.field.ContractMultiplier());
+ }
+
+ public boolean isSet(quickfix.field.ContractMultiplier field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractMultiplier() {
+ return isSetField(231);
+ }
+
+ public void set(quickfix.field.CouponRate value) {
+ setField(value);
+ }
+
+ public quickfix.field.CouponRate get(quickfix.field.CouponRate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CouponRate getCouponRate() throws FieldNotFound {
+ return get(new quickfix.field.CouponRate());
+ }
+
+ public boolean isSet(quickfix.field.CouponRate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCouponRate() {
+ return isSetField(223);
+ }
+
+ public void set(quickfix.field.SecurityExchange value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityExchange get(quickfix.field.SecurityExchange value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityExchange getSecurityExchange() throws FieldNotFound {
+ return get(new quickfix.field.SecurityExchange());
+ }
+
+ public boolean isSet(quickfix.field.SecurityExchange field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityExchange() {
+ return isSetField(207);
+ }
+
+ public void set(quickfix.field.Issuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.Issuer get(quickfix.field.Issuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Issuer getIssuer() throws FieldNotFound {
+ return get(new quickfix.field.Issuer());
+ }
+
+ public boolean isSet(quickfix.field.Issuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetIssuer() {
+ return isSetField(106);
+ }
+
+ public void set(quickfix.field.EncodedIssuerLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuerLen get(quickfix.field.EncodedIssuerLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuerLen getEncodedIssuerLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuerLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuerLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuerLen() {
+ return isSetField(348);
+ }
+
+ public void set(quickfix.field.EncodedIssuer value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedIssuer get(quickfix.field.EncodedIssuer value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedIssuer getEncodedIssuer() throws FieldNotFound {
+ return get(new quickfix.field.EncodedIssuer());
+ }
+
+ public boolean isSet(quickfix.field.EncodedIssuer field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedIssuer() {
+ return isSetField(349);
+ }
+
+ public void set(quickfix.field.SecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.SecurityDesc get(quickfix.field.SecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.SecurityDesc getSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.SecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.SecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetSecurityDesc() {
+ return isSetField(107);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDescLen value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDescLen get(quickfix.field.EncodedSecurityDescLen value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDescLen getEncodedSecurityDescLen() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDescLen());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDescLen field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDescLen() {
+ return isSetField(350);
+ }
+
+ public void set(quickfix.field.EncodedSecurityDesc value) {
+ setField(value);
+ }
+
+ public quickfix.field.EncodedSecurityDesc get(quickfix.field.EncodedSecurityDesc value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EncodedSecurityDesc getEncodedSecurityDesc() throws FieldNotFound {
+ return get(new quickfix.field.EncodedSecurityDesc());
+ }
+
+ public boolean isSet(quickfix.field.EncodedSecurityDesc field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEncodedSecurityDesc() {
+ return isSetField(351);
+ }
+
+ public void set(quickfix.field.Pool value) {
+ setField(value);
+ }
+
+ public quickfix.field.Pool get(quickfix.field.Pool value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.Pool getPool() throws FieldNotFound {
+ return get(new quickfix.field.Pool());
+ }
+
+ public boolean isSet(quickfix.field.Pool field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetPool() {
+ return isSetField(691);
+ }
+
+ public void set(quickfix.field.ContractSettlMonth value) {
+ setField(value);
+ }
+
+ public quickfix.field.ContractSettlMonth get(quickfix.field.ContractSettlMonth value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.ContractSettlMonth getContractSettlMonth() throws FieldNotFound {
+ return get(new quickfix.field.ContractSettlMonth());
+ }
+
+ public boolean isSet(quickfix.field.ContractSettlMonth field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetContractSettlMonth() {
+ return isSetField(667);
+ }
+
+ public void set(quickfix.field.CPProgram value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPProgram get(quickfix.field.CPProgram value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPProgram getCPProgram() throws FieldNotFound {
+ return get(new quickfix.field.CPProgram());
+ }
+
+ public boolean isSet(quickfix.field.CPProgram field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPProgram() {
+ return isSetField(875);
+ }
+
+ public void set(quickfix.field.CPRegType value) {
+ setField(value);
+ }
+
+ public quickfix.field.CPRegType get(quickfix.field.CPRegType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.CPRegType getCPRegType() throws FieldNotFound {
+ return get(new quickfix.field.CPRegType());
+ }
+
+ public boolean isSet(quickfix.field.CPRegType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetCPRegType() {
+ return isSetField(876);
+ }
+
+ public void set(quickfix.field.NoEvents value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoEvents get(quickfix.field.NoEvents value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoEvents getNoEvents() throws FieldNotFound {
+ return get(new quickfix.field.NoEvents());
+ }
+
+ public boolean isSet(quickfix.field.NoEvents field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoEvents() {
+ return isSetField(864);
+ }
+
+ public static class NoEvents extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {865, 866, 867, 868, 0};
+
+ public NoEvents() {
+ super(864, 865, ORDER);
+ }
+
+ public void set(quickfix.field.EventType value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventType get(quickfix.field.EventType value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventType getEventType() throws FieldNotFound {
+ return get(new quickfix.field.EventType());
+ }
+
+ public boolean isSet(quickfix.field.EventType field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventType() {
+ return isSetField(865);
+ }
+
+ public void set(quickfix.field.EventDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventDate get(quickfix.field.EventDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventDate getEventDate() throws FieldNotFound {
+ return get(new quickfix.field.EventDate());
+ }
+
+ public boolean isSet(quickfix.field.EventDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventDate() {
+ return isSetField(866);
+ }
+
+ public void set(quickfix.field.EventPx value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventPx get(quickfix.field.EventPx value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventPx getEventPx() throws FieldNotFound {
+ return get(new quickfix.field.EventPx());
+ }
+
+ public boolean isSet(quickfix.field.EventPx field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventPx() {
+ return isSetField(867);
+ }
+
+ public void set(quickfix.field.EventText value) {
+ setField(value);
+ }
+
+ public quickfix.field.EventText get(quickfix.field.EventText value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.EventText getEventText() throws FieldNotFound {
+ return get(new quickfix.field.EventText());
+ }
+
+ public boolean isSet(quickfix.field.EventText field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetEventText() {
+ return isSetField(868);
+ }
+
+ }
+
+ public void set(quickfix.field.DatedDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.DatedDate get(quickfix.field.DatedDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.DatedDate getDatedDate() throws FieldNotFound {
+ return get(new quickfix.field.DatedDate());
+ }
+
+ public boolean isSet(quickfix.field.DatedDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetDatedDate() {
+ return isSetField(873);
+ }
+
+ public void set(quickfix.field.InterestAccrualDate value) {
+ setField(value);
+ }
+
+ public quickfix.field.InterestAccrualDate get(quickfix.field.InterestAccrualDate value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.InterestAccrualDate getInterestAccrualDate() throws FieldNotFound {
+ return get(new quickfix.field.InterestAccrualDate());
+ }
+
+ public boolean isSet(quickfix.field.InterestAccrualDate field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetInterestAccrualDate() {
+ return isSetField(874);
+ }
+
+ public void set(quickfix.field.NoUnderlyings value) {
+ setField(value);
+ }
+
+ public quickfix.field.NoUnderlyings get(quickfix.field.NoUnderlyings value) throws FieldNotFound {
+ getField(value);
+ return value;
+ }
+
+ public quickfix.field.NoUnderlyings getNoUnderlyings() throws FieldNotFound {
+ return get(new quickfix.field.NoUnderlyings());
+ }
+
+ public boolean isSet(quickfix.field.NoUnderlyings field) {
+ return isSetField(field);
+ }
+
+ public boolean isSetNoUnderlyings() {
+ return isSetField(711);
+ }
+
+ public static class NoUnderlyings extends Group {
+
+ static final long serialVersionUID = 20050617;
+ private static final int[] ORDER = {311, 312, 309, 305, 457, 462, 463, 310, 763, 313, 542, 315, 241, 242, 243, 244, 245, 246, 256, 595, 592, 593, 594, 247, 316, 941, 317, 436, 435, 308, 306, 362, 363, 307, 364, 365, 877, 878, 318, 879, 810, 882, 883, 884, 885, 886, 887,